﻿:root {
    --sh-navy: #123c68;
    --sh-navy-deep: #0b2a4b;
    --sh-blue: #1f6fa9;
    --sh-orange: #f47b35;
    --sh-orange-dark: #d95d1d;
    --sh-cream: #f8f4ed;
    --sh-cloud: #f3f6f9;
    --sh-white: #ffffff;
    --sh-ink: #18324b;
    --sh-muted: #66788a;
    --sh-line: #dce5ed;
    --sh-radius-lg: 28px;
    --sh-radius-md: 18px;
    --sh-shadow: 0 18px 45px rgba(19, 56, 89, .10);
}

body.home-v2 {
    background: var(--sh-cloud);
    color: var(--sh-ink);
}

body.home-v2 .page_wrapper,
body.home-v2 .main,
body.home-v2 .main_content {
    background: var(--sh-cloud);
}

body.home-v2 .main_content {
    padding: 0;
}

body.home-v2 .main_content > .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

body.home-v2 .main_content > .container > .row {
    margin: 0;
}

body.home-v2 main.content {
    width: 100%;
    float: none;
    padding: 0;
}

body.home-v2 .header .navbar {
    margin: 0;
    background: rgba(255,255,255,.98);
    box-shadow: 0 8px 26px rgba(20, 51, 81, .08);
}

body.home-v2 .header .navbar .d-topMenu {
    background: var(--sh-navy-deep);
    padding: 9px 0;
}

body.home-v2 .header .navbar .d-topMenu ul li a {
    color: rgba(255,255,255,.88);
}

body.home-v2 .header .navbar .d-topMenu ul li a:hover {
    color: #ffd0b5;
}

body.home-v2 .header .navbar .navbar-brand {
    width: 190px;
    height: 58px;
    margin: 12px 0;
}

body.home-v2 .header .navbar .navbar-nav {
    margin-top: 25px;
}

body.home-v2 .header .navbar .navbar-nav > li > a {
    color: var(--sh-navy-deep);
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 16px;
}

body.home-v2 .header .navbar .navbar-nav > li > a:hover,
body.home-v2 .header .navbar .navbar-nav > li.b > a {
    color: var(--sh-orange-dark);
    background: #fff3eb;
}

body.home-v2 .banner {
    background: var(--sh-cream);
    overflow: hidden;
}

body.home-v2 .banner .bxslider .item img,
body.home-v2 .banner .item img {
    width: 100%;
}

.sh-home-v2 {
    overflow: hidden;
}

.sh-home-inner {
    width: calc(100% - 48px);
    max-width: 1320px;
    margin: 0 auto;
}

.sh-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--sh-orange-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .15em;
}

.sh-intent-section {
    padding: 56px 0 58px;
    background: linear-gradient(180deg, var(--sh-cream) 0%, #fff 100%);
}

.sh-intent-heading,
.sh-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
}

.sh-intent-heading h1,
.sh-section-heading h2,
.sh-brand-copy h2 {
    margin: 0;
    color: var(--sh-navy-deep);
    font-weight: 900;
    letter-spacing: -.035em;
}

.sh-intent-heading h1 {
    font-size: clamp(36px, 4.3vw, 62px);
    line-height: 1.08;
}

.sh-intent-heading p,
.sh-section-heading p,
.sh-brand-copy p {
    margin: 14px 0 0;
    color: var(--sh-muted);
    font-size: 17px;
    line-height: 1.75;
}

.sh-intent-actions {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.sh-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.sh-btn:hover {
    transform: translateY(-2px);
}

.sh-btn-primary {
    color: #fff !important;
    background: var(--sh-orange);
    box-shadow: 0 10px 24px rgba(244, 123, 53, .25);
}

.sh-btn-primary:hover {
    background: var(--sh-orange-dark);
}

.sh-btn-secondary {
    color: var(--sh-navy) !important;
    border-color: #cbd9e5;
    background: rgba(255,255,255,.82);
}

.sh-btn-light {
    color: var(--sh-navy-deep) !important;
    background: #fff;
}

.sh-intent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sh-intent-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 16px;
    min-height: 128px;
    padding: 24px;
    color: var(--sh-ink) !important;
    border: 1px solid rgba(20, 57, 91, .08);
    border-radius: var(--sh-radius-md);
    background: #fff;
    box-shadow: 0 10px 30px rgba(25, 60, 92, .07);
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sh-intent-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 123, 53, .35);
    box-shadow: var(--sh-shadow);
}

.sh-intent-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 17px;
    background: #edf5fb;
    color: var(--sh-blue);
}

.sh-intent-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sh-intent-calm .sh-intent-icon { background: #fff0e7; color: var(--sh-orange-dark); }
.sh-intent-family .sh-intent-icon { background: #eef8ee; color: #3e8a55; }
.sh-intent-learn .sh-intent-icon { background: #f3efff; color: #7350a8; }

.sh-intent-copy strong,
.sh-intent-copy small {
    display: block;
}

.sh-intent-copy strong {
    margin-bottom: 7px;
    color: var(--sh-navy-deep);
    font-size: 19px;
    line-height: 1.35;
}

.sh-intent-copy small {
    color: var(--sh-muted);
    font-size: 14px;
    line-height: 1.5;
}

.sh-intent-arrow {
    color: var(--sh-orange);
    font-size: 22px;
    font-weight: 800;
}


.sh-category-section {
    padding: 0 0 22px;
    background: #fff;
}

.sh-category-panel {
    display: grid;
    grid-template-columns: minmax(230px, .78fr) minmax(0, 2.22fr);
    gap: 28px;
    padding: 28px 30px;
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius-lg);
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 52%, #fff7f0 100%);
    box-shadow: 0 12px 34px rgba(18, 60, 104, .07);
}

.sh-category-intro {
    align-self: center;
}

.sh-category-intro h2 {
    margin: 0;
    color: var(--sh-navy-deep);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.sh-category-intro p {
    margin: 10px 0 0;
    color: var(--sh-muted);
    font-size: 14px;
    line-height: 1.65;
}

.sh-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.sh-category-grid a {
    position: relative;
    display: flex;
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    padding: 16px 38px 16px 17px;
    color: var(--sh-ink) !important;
    border: 1px solid rgba(18, 60, 104, .09);
    border-radius: 15px;
    background: rgba(255,255,255,.92);
    text-decoration: none !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.sh-category-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(244,123,53,.38);
    box-shadow: 0 10px 22px rgba(18, 60, 104, .09);
}

.sh-category-grid strong,
.sh-category-grid small {
    display: block;
}

.sh-category-grid strong {
    color: var(--sh-navy-deep);
    font-size: 16px;
    font-weight: 900;
}

.sh-category-grid small {
    margin-top: 5px;
    color: var(--sh-muted);
    font-size: 12px;
    line-height: 1.45;
}

.sh-category-grid span {
    position: absolute;
    right: 16px;
    top: 50%;
    color: var(--sh-orange);
    font-size: 19px;
    font-weight: 900;
    transform: translateY(-50%);
}

.sh-home-section {
    padding: 64px 0 70px;
    background: #fff;
}

.sh-section-popular {
    background: #f0f4f8;
}

.sh-section-latest {
    background: #fff;
}

.sh-section-heading h2,
.sh-brand-copy h2 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.15;
}

.sh-section-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 10px 0;
    color: var(--sh-navy) !important;
    border-bottom: 2px solid var(--sh-orange);
    font-weight: 800;
    text-decoration: none !important;
}

.sh-section-more:hover {
    color: var(--sh-orange-dark) !important;
}

.sh-book-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px 18px;
}

.sh-book-card {
    min-width: 0;
}

.sh-book-card-link {
    display: block;
    height: 100%;
    color: var(--sh-ink) !important;
    border-radius: var(--sh-radius-md);
    background: #fff;
    box-shadow: 0 9px 28px rgba(18, 60, 104, .08);
    overflow: hidden;
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease;
}

.sh-book-card-link:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 42px rgba(18, 60, 104, .15);
}

.sh-book-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    padding: 14px;
    background: linear-gradient(145deg, #edf2f6, #fff);
    overflow: hidden;
}

.sh-book-cover-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 10px 12px rgba(17, 42, 66, .13));
    transition: transform .3s ease;
}

.sh-book-card-link:hover .sh-book-cover-image {
    transform: scale(1.025);
}

.sh-book-play {
    position: absolute;
    right: 17px;
    bottom: 17px;
    width: 44px;
    height: 44px;
    color: var(--sh-orange);
    filter: drop-shadow(0 6px 12px rgba(19, 56, 89, .18));
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .25s ease, transform .25s ease;
}

.sh-book-play svg {
    width: 100%;
    height: 100%;
}

.sh-book-play circle { fill: #fff; stroke: currentColor; stroke-width: 2; }
.sh-book-play path { fill: currentColor; }

.sh-book-card-link:hover .sh-book-play {
    opacity: 1;
    transform: translateY(0);
}

.sh-book-content {
    display: flex;
    min-height: 184px;
    flex-direction: column;
    padding: 18px 17px 17px;
}

.sh-book-badge {
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 5px 9px;
    color: var(--sh-blue);
    border-radius: 999px;
    background: #eaf3fa;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.sh-book-title {
    display: -webkit-box;
    min-height: 48px;
    color: var(--sh-navy-deep);
    font-size: 17px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.sh-book-person {
    display: -webkit-box;
    min-height: 40px;
    margin-top: 8px;
    color: var(--sh-muted);
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.sh-book-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    color: #758698;
    border-top: 1px solid #edf1f4;
    font-size: 12px;
}

.sh-book-price {
    color: var(--sh-orange-dark);
    font-weight: 900;
    white-space: nowrap;
}

.sh-format-section {
    padding: 64px 0 70px;
    background: var(--sh-navy-deep);
}

.sh-section-heading-light h2,
.sh-section-heading-light p {
    color: #fff;
}

.sh-format-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sh-format-card {
    position: relative;
    display: flex;
    min-height: 198px;
    flex-direction: column;
    padding: 26px;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--sh-radius-md);
    background: rgba(255,255,255,.08);
    text-decoration: none !important;
    overflow: hidden;
    transition: transform .25s ease, background .25s ease;
}

.sh-format-card:after {
    position: absolute;
    right: -34px;
    bottom: -55px;
    width: 150px;
    height: 150px;
    border: 28px solid rgba(244,123,53,.20);
    border-radius: 50%;
    content: "";
}

.sh-format-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.13);
}

.sh-format-number {
    color: #ffb181;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .14em;
}

.sh-format-card strong {
    margin-top: 22px;
    font-size: 26px;
}

.sh-format-card small {
    max-width: 260px;
    margin-top: 12px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.65;
}

.sh-format-card > span:last-child {
    margin-top: auto;
    color: #fff;
    font-weight: 800;
}

.sh-brand-section {
    padding: 0 0 72px;
    background: #fff;
}

.sh-brand-panel {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 42px 48px;
    color: #fff;
    border-radius: var(--sh-radius-lg);
    background: linear-gradient(125deg, var(--sh-navy) 0%, #1d5e91 58%, #277eb2 100%);
    box-shadow: var(--sh-shadow);
}

.sh-brand-copy h2,
.sh-brand-copy p {
    color: #fff;
}

.sh-brand-copy p {
    color: rgba(255,255,255,.76);
}

.sh-brand-mark {
    display: flex;
    height: 78px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
}

.sh-wave {
    display: block;
    width: 7px;
    border-radius: 99px;
    background: #ff9a60;
}

.sh-wave-1 { height: 24px; }
.sh-wave-2 { height: 46px; }
.sh-wave-3 { height: 68px; }
.sh-wave-4 { height: 42px; }
.sh-wave-5 { height: 20px; }

body.home-v2 .footer {
    background: var(--sh-navy-deep);
}

body.home-v2 .footer,
body.home-v2 .footer a,
body.home-v2 .footer_content {
    color: rgba(255,255,255,.82);
}

@media (max-width: 1199px) {
    .sh-category-panel { grid-template-columns: 1fr; }
    .sh-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .sh-intent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sh-book-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .sh-home-inner { width: calc(100% - 36px); }
    .sh-intent-heading,
    .sh-section-heading { align-items: flex-start; flex-direction: column; }
    .sh-book-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sh-brand-panel { grid-template-columns: 90px minmax(0, 1fr); }
    .sh-brand-panel .sh-btn { grid-column: 1 / -1; justify-self: flex-start; }
    body.home-v2 .header .navbar .navbar-nav { margin-top: 0; }
}

@media (max-width: 767px) {
    body.home-v2 .header .navbar .navbar-brand {
        width: 155px;
        height: 47px;
        margin: 10px 0;
    }

    body.home-v2 .header .navbar .d-topMenu { display: none; }
    body.home-v2 .header .navbar .navbar-nav > li > a { border-radius: 0; padding: 13px 18px; }

    .sh-home-inner { width: calc(100% - 28px); }
    .sh-intent-section,
    .sh-home-section,
    .sh-format-section { padding: 54px 0 60px; }
    .sh-intent-actions { width: 100%; flex-wrap: wrap; }
    .sh-intent-actions .sh-btn { flex: 1 1 180px; }
    .sh-intent-grid { grid-template-columns: 1fr; gap: 13px; }
    .sh-intent-card { min-height: 104px; padding: 18px; }
    .sh-category-section { padding-bottom: 12px; }
    .sh-category-panel { gap: 20px; padding: 24px 20px; }
    .sh-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sh-category-grid a { min-height: 82px; }
    .sh-book-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
    .sh-book-content { min-height: 170px; padding: 14px 13px; }
    .sh-book-title { font-size: 15px; }
    .sh-book-play { display: none; }
    .sh-format-grid { grid-template-columns: 1fr; }
    .sh-format-card { min-height: 190px; }
    .sh-brand-section { padding-bottom: 62px; }
    .sh-brand-panel { grid-template-columns: 1fr; padding: 32px 26px; }
    .sh-brand-mark { width: 88px; }
}

@media (max-width: 420px) {
    .sh-book-grid { gap: 14px 9px; }
    .sh-book-cover { padding: 9px; }
    .sh-book-content { min-height: 162px; padding: 12px 10px; }
    .sh-book-person { font-size: 12px; }
    .sh-book-meta { align-items: flex-start; flex-direction: column; gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
    .sh-intent-card,
    .sh-book-card-link,
    .sh-book-cover-image,
    .sh-format-card,
    .sh-btn { transition: none !important; }
}

/* =========================================================
   V2.0-1.5 首頁層次與內容辨識
   ========================================================= */

/* 本週精選改為 1 張主選書 + 4 張輔助選書，建立真正的編輯策展層次。 */
.sh-section-featured {
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
}

.sh-section-featured .sh-book-grid {
    grid-template-columns: minmax(0, 1.48fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sh-section-featured .sh-book-card:first-child {
    grid-row: 1 / 3;
}

.sh-section-featured .sh-book-card:first-child .sh-book-card-link {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    border: 1px solid rgba(244, 123, 53, .18);
    box-shadow: 0 22px 48px rgba(18, 60, 104, .14);
}

.sh-section-featured .sh-book-card:first-child .sh-book-cover {
    aspect-ratio: 16 / 13;
    padding: 22px;
    background: radial-gradient(circle at 50% 35%, #fff 0%, #f0f5f8 58%, #e7eef4 100%);
}

.sh-section-featured .sh-book-card:first-child .sh-book-cover-image {
    max-width: 72%;
}

.sh-section-featured .sh-book-card:first-child .sh-book-content {
    min-height: 194px;
    padding: 22px 24px 23px;
}

.sh-section-featured .sh-book-card:first-child .sh-book-title {
    min-height: 0;
    font-size: 23px;
    line-height: 1.38;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-card-link {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 248px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-cover {
    min-height: 100%;
    aspect-ratio: auto;
    padding: 10px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-content {
    min-height: 0;
    padding: 16px 15px 15px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-title {
    min-height: 44px;
    font-size: 15px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-person {
    min-height: 36px;
    font-size: 12px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
}

/* 熱門榜單加入名次，讓熱門與一般書架有明確差異。 */
.sh-book-rank {
    display: none;
}

.sh-section-popular .sh-book-rank {
    position: absolute;
    z-index: 2;
    left: 12px;
    top: 12px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    border: 3px solid rgba(255,255,255,.82);
    border-radius: 14px;
    background: var(--sh-navy-deep);
    box-shadow: 0 8px 18px rgba(11, 42, 75, .22);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
}

.sh-section-popular .sh-book-card:nth-child(-n+3) .sh-book-rank {
    background: var(--sh-orange);
}

/* 最新上架增加 NEW 辨識。 */
.sh-section-latest .sh-book-cover:before {
    position: absolute;
    z-index: 2;
    right: 12px;
    top: 12px;
    padding: 6px 10px;
    color: #fff;
    border-radius: 999px;
    background: var(--sh-orange);
    box-shadow: 0 7px 16px rgba(217, 93, 29, .22);
    content: "NEW";
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

/* 服務特色區：增加首頁下半部資訊密度與信任感。 */
.sh-trust-section {
    padding: 58px 0 64px;
    background: linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
}

.sh-trust-heading {
    margin-bottom: 26px;
}

.sh-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sh-trust-card {
    min-height: 202px;
    padding: 24px 22px;
    border: 1px solid rgba(18, 60, 104, .09);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 60, 104, .07);
}

.sh-trust-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--sh-blue);
    border-radius: 16px;
    background: #edf5fb;
}

.sh-trust-card:nth-child(2) .sh-trust-icon { color: #3e8a55; background: #eef8ee; }
.sh-trust-card:nth-child(3) .sh-trust-icon { color: var(--sh-orange-dark); background: #fff0e7; }
.sh-trust-card:nth-child(4) .sh-trust-icon { color: #7350a8; background: #f3efff; }

.sh-trust-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sh-trust-card strong,
.sh-trust-card small {
    display: block;
}

.sh-trust-card strong {
    margin-top: 20px;
    color: var(--sh-navy-deep);
    font-size: 19px;
    font-weight: 900;
}

.sh-trust-card small {
    margin-top: 9px;
    color: var(--sh-muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 1199px) {
    .sh-section-featured .sh-book-grid {
        grid-template-columns: minmax(0, 1.28fr) repeat(2, minmax(0, 1fr));
    }

    .sh-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .sh-section-featured .sh-book-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .sh-section-featured .sh-book-card:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-card-link {
        display: grid;
        grid-template-columns: minmax(210px, .82fr) minmax(0, 1.18fr);
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-cover {
        min-height: 360px;
        aspect-ratio: auto;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-card-link {
        display: block;
        min-height: 0;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-cover {
        min-height: 0;
        aspect-ratio: 2 / 3;
        padding: 13px;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-content {
        min-height: 176px;
    }
}

@media (max-width: 767px) {
    .sh-section-featured .sh-book-card:first-child .sh-book-card-link {
        grid-template-columns: 42% minmax(0, 1fr);
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-cover {
        min-height: 300px;
        padding: 14px;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-cover-image {
        max-width: 100%;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-content {
        min-height: 0;
        padding: 18px 16px;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-title {
        font-size: 18px;
    }

    .sh-trust-section {
        padding: 50px 0 56px;
    }

    .sh-trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sh-trust-card {
        min-height: 0;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .sh-section-featured .sh-book-card:first-child .sh-book-card-link {
        display: block;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-cover {
        min-height: 0;
        aspect-ratio: 2 / 3;
    }
}

/* =========================================================
   V2.0-1.6 本週精選內容化
   不只放大封面；加入編輯導讀、適合對象與清楚入口。
   ========================================================= */

.sh-featured-manifesto,
.sh-feature-label,
.sh-book-summary,
.sh-editor-reason,
.sh-feature-action {
    display: none;
}

.sh-section-featured {
    padding-top: 58px;
    background:
        radial-gradient(circle at 88% 8%, rgba(244,123,53,.09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
}

.sh-section-featured .sh-section-heading {
    margin-bottom: 22px;
}

.sh-section-featured .sh-featured-manifesto {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    margin-bottom: 22px;
    padding: 20px 24px;
    color: #fff;
    border-radius: 20px;
    background: linear-gradient(120deg, var(--sh-navy-deep), #174e80 72%, #236fa6);
    box-shadow: 0 14px 34px rgba(11,42,75,.14);
}

.sh-featured-manifesto-mark {
    display: inline-grid;
    min-height: 56px;
    place-items: center;
    padding: 9px 12px;
    color: #ffd1b5;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.sh-featured-manifesto strong,
.sh-featured-manifesto p {
    display: block;
}

.sh-featured-manifesto strong {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.35;
}

.sh-featured-manifesto p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.65;
}

.sh-section-featured .sh-book-grid {
    grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(285px, auto));
    gap: 18px;
}

.sh-section-featured .sh-book-card:first-child {
    grid-row: 1 / 3;
}

.sh-section-featured .sh-book-card:first-child .sh-book-card-link {
    display: grid;
    grid-template-columns: minmax(205px, .88fr) minmax(0, 1.12fr);
    min-height: 588px;
    border: 1px solid rgba(244,123,53,.24);
    box-shadow: 0 22px 48px rgba(18,60,104,.14);
}

.sh-section-featured .sh-book-card:first-child .sh-book-cover {
    min-height: 100%;
    aspect-ratio: auto;
    padding: 24px 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.56), rgba(255,255,255,0)),
        radial-gradient(circle at 50% 32%, #ffffff 0%, #edf3f7 60%, #e2ebf1 100%);
}

.sh-section-featured .sh-book-card:first-child .sh-book-cover-image {
    max-width: 92%;
    max-height: 510px;
}

.sh-section-featured .sh-book-card:first-child .sh-book-content {
    min-height: 0;
    justify-content: center;
    padding: 30px 28px;
}

.sh-section-featured .sh-feature-label {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 7px 11px;
    color: #fff;
    border-radius: 999px;
    background: var(--sh-orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.sh-section-featured .sh-book-badge {
    margin-bottom: 11px;
}

.sh-section-featured .sh-book-card:first-child .sh-book-title {
    min-height: 0;
    font-size: 25px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
}

.sh-section-featured .sh-book-card:first-child .sh-book-person {
    min-height: 0;
    margin-top: 10px;
    font-size: 14px;
}

.sh-section-featured .sh-book-summary {
    display: -webkit-box;
    margin-top: 18px;
    color: #4e6579;
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.sh-section-featured .sh-editor-reason {
    display: block;
    margin-top: 17px;
    padding: 13px 14px;
    color: var(--sh-navy-deep);
    border-left: 4px solid var(--sh-orange);
    border-radius: 0 12px 12px 0;
    background: #fff4ec;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.65;
}

.sh-section-featured .sh-book-meta {
    margin-top: 18px;
}

.sh-section-featured .sh-feature-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
    padding: 11px 14px;
    color: #fff;
    border-radius: 12px;
    background: var(--sh-navy);
    font-size: 13px;
    font-weight: 900;
}

.sh-section-featured .sh-feature-action span {
    color: #ffb181;
    font-size: 18px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-card-link {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 285px;
    border: 1px solid rgba(18,60,104,.06);
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-cover {
    min-height: 100%;
    aspect-ratio: auto;
    padding: 13px;
    background: linear-gradient(145deg, #eef4f7, #fbfdfe);
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-content {
    min-height: 0;
    padding: 17px 16px 15px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-feature-label {
    margin-bottom: 8px;
    padding: 5px 8px;
    color: var(--sh-orange-dark);
    border: 1px solid #ffd5bd;
    background: #fff4ec;
    font-size: 9px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-badge {
    margin-bottom: 7px;
    padding: 4px 7px;
    font-size: 10px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-title {
    min-height: 0;
    font-size: 15px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-person {
    min-height: 0;
    margin-top: 6px;
    font-size: 11px;
    -webkit-line-clamp: 1;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-summary {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-editor-reason {
    margin-top: 9px;
    padding: 8px 9px;
    border-left-width: 3px;
    border-radius: 0 8px 8px 0;
    font-size: 10px;
    line-height: 1.45;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-book-meta {
    align-items: center;
    flex-direction: row;
    gap: 8px;
    margin-top: auto;
    padding-top: 9px;
    font-size: 10px;
}

.sh-section-featured .sh-book-card:not(:first-child) .sh-feature-action {
    margin-top: 9px;
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 10px;
}

.sh-section-featured .sh-book-card-link:hover .sh-feature-action {
    background: var(--sh-orange-dark);
}

@media (max-width: 1199px) {
    .sh-section-featured .sh-book-grid {
        grid-template-columns: minmax(0, 1.05fr) repeat(2, minmax(0, 1fr));
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-card-link {
        grid-template-columns: 42% minmax(0, 58%);
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-card-link {
        grid-template-columns: 112px minmax(0, 1fr);
    }
}

@media (max-width: 991px) {
    .sh-section-featured .sh-featured-manifesto {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .sh-section-featured .sh-book-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .sh-section-featured .sh-book-card:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-card-link {
        grid-template-columns: minmax(245px, .78fr) minmax(0, 1.22fr);
        min-height: 440px;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-cover-image {
        max-height: 390px;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-card-link {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .sh-section-featured .sh-featured-manifesto {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
    }

    .sh-featured-manifesto-mark {
        min-height: 0;
        justify-self: start;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-card-link {
        grid-template-columns: 41% minmax(0, 59%);
        min-height: 390px;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-content {
        padding: 20px 17px;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-title {
        font-size: 19px;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-summary {
        -webkit-line-clamp: 3;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-card-link {
        display: block;
        min-height: 0;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-cover {
        min-height: 0;
        aspect-ratio: 2 / 3;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-content {
        min-height: 252px;
    }
}

@media (max-width: 520px) {
    .sh-section-featured .sh-book-grid {
        grid-template-columns: 1fr;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-card-link {
        display: block;
        min-height: 0;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-cover {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .sh-section-featured .sh-book-card:first-child .sh-book-cover-image {
        max-width: 72%;
        max-height: none;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-card-link {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-cover {
        min-height: 100%;
        aspect-ratio: auto;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-content {
        min-height: 0;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-book-summary {
        -webkit-line-clamp: 2;
    }

    .sh-section-featured .sh-book-card:not(:first-child) .sh-editor-reason {
        display: none;
    }
}
