:root {
    --red: #C8102E;
    --red-dark: #8B0A1E;
    --red-deep: #5A0612;
    --gold: #D4A843;
    --gold-light: #F0CC78;
    --ink: #1A0A06;
    --ink-mid: #3D1A0C;
    --ink-light: #6B3A20;
    --paper: #FDF8F0;
    --cream: #FBF5E8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif TC', serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(26, 10, 6, .96);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand-zh {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: .2em;
}

.nav-brand-en {
    font-size: .58rem;
    letter-spacing: .22em;
    color: rgba(212, 168, 67, .6);
    font-family: 'Noto Sans TC', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
}

    .nav-links a {
        font-size: .85rem;
        font-weight: 600;
        color: rgba(253, 248, 240, .78);
        text-decoration: none;
        letter-spacing: .08em;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--gold-light);
        }

        .nav-links a.active {
            color: var(--gold);
        }

.nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: .38rem 1.1rem;
    border-radius: 2px;
}

.ham {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

    .ham span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gold-light);
        border-radius: 2px;
    }

@media(max-width:860px) {
    .ham {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 72px;
        right: 0;
        width: 240px;
        height: 100vh;
        background: rgba(26, 10, 6, .97);
        padding: 2rem 1.5rem;
        gap: 1.4rem;
        border-left: 2px solid var(--gold);
    }

        .nav-links.open {
            display: flex;
        }
}

/* ── HERO (same as news.html) ── */
.hero {
    margin-top: 72px;
    height: clamp(180px, 22vw, 250px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 130% at 10% 50%, rgba(200, 16, 46, .26) 0%, transparent 55%), linear-gradient(125deg, #3D0A10 0%, #1A0A06 42%, #0D0806 72%, #1C1004 100%);
}

.hero-gd {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(212, 168, 67, .03) 47px, rgba(212, 168, 67, .03) 48px), repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(212, 168, 67, .03) 47px, rgba(212, 168, 67, .03) 48px);
}

.hero-cnt {
    position: relative;
    z-index: 2;
    padding-left: clamp(2rem, 6%, 7rem);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.hero-eye {
    font-size: .6rem;
    letter-spacing: .55em;
    color: var(--gold);
    opacity: .8;
    font-family: 'Noto Sans TC', sans-serif;
    display: flex;
    align-items: center;
    gap: .6rem;
}

    .hero-eye::before,
    .hero-eye::after {
        content: '';
        width: 14px;
        height: 1px;
        background: var(--gold);
        opacity: .5;
    }

.hero-h1 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: .2em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
}

    .hero-h1 em {
        color: var(--gold-light);
        font-style: normal;
    }

.hero-sub {
    font-size: .74rem;
    color: rgba(253, 248, 240, .34);
    letter-spacing: .26em;
    font-family: 'Noto Sans TC', sans-serif;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    background: var(--cream);
    border-bottom: 1px solid rgba(212, 168, 67, .18);
    padding: .7rem 5%;
    font-size: .72rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-light);
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: .5rem;
}

    .breadcrumb a {
        color: var(--ink-light);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: var(--red);
        }

    .breadcrumb .sep {
        opacity: .4;
    }

    .breadcrumb .current {
        color: var(--red);
        font-weight: 700;
    }

/* ── PAGE LAYOUT ── */
.page-body {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.8rem 5% 5rem;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.4rem;
    align-items: start;
}

/* ══════════════════════════════
   MAIN CONTENT AREA
══════════════════════════════ */
.main-content {
}

/* Article header */
.art-meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.art-tag {
    font-size: .6rem;
    letter-spacing: .14em;
    font-weight: 700;
    font-family: 'Noto Sans TC', sans-serif;
    padding: .18rem .65rem;
    border-radius: 1px;
    border: 1px solid;
}

.t-red {
    background: rgba(200, 16, 46, .09);
    border-color: rgba(200, 16, 46, .3);
    color: var(--red);
}

.t-gold {
    background: rgba(212, 168, 67, .12);
    border-color: rgba(212, 168, 67, .4);
    color: #7A5C0A;
}

.t-green {
    background: rgba(0, 140, 90, .08);
    border-color: rgba(0, 140, 90, .3);
    color: #005A38;
}

.t-blue {
    background: rgba(21, 101, 192, .08);
    border-color: rgba(21, 101, 192, .3);
    color: #0D47A1;
}

.art-date {
    font-size: .68rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-light);
    letter-spacing: .06em;
    margin-left: auto;
}

.art-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: .08em;
    line-height: 1.4;
    margin-bottom: .6rem;
    padding-bottom: .8rem;
    border-bottom: 2px solid rgba(212, 168, 67, .25);
    position: relative;
}

    .art-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 56px;
        height: 2px;
        background: var(--gold);
    }

.art-sub {
    font-size: .82rem;
    color: var(--ink-light);
    font-family: 'Noto Sans TC', sans-serif;
    letter-spacing: .04em;
    line-height: 1.9;
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px dashed rgba(212, 168, 67, .22);
}

/* ── Rich content area (where menu images/tables go) ── */
.art-body {
    font-size: .88rem;
    line-height: 2;
    color: var(--ink-mid);
    font-family: 'Noto Sans TC', sans-serif;
}

    .art-body p {
        margin-bottom: 1.2rem;
    }

    .art-body h3 {
        font-family: 'Noto Serif TC', serif;
        font-size: 1.05rem;
        font-weight: 900;
        color: var(--ink);
        letter-spacing: .1em;
        margin: 2rem 0 .8rem;
        padding-left: .8rem;
        border-left: 3px solid var(--gold);
    }

    .art-body h4 {
        font-size: .88rem;
        font-weight: 700;
        color: var(--red-dark);
        letter-spacing: .08em;
        margin: 1.4rem 0 .5rem;
    }

/* Menu image placeholder / actual img */
.menu-img-block {
    margin: 1.6rem 0;
    border: 1px solid rgba(212, 168, 67, .2);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(26, 10, 6, .09);
}

    .menu-img-block img {
        width: 100%;
        height: auto;
        display: block;
    }

.menu-img-caption {
    background: var(--cream);
    padding: .5rem .9rem;
    font-size: .7rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-light);
    letter-spacing: .06em;
    border-top: 1px solid rgba(212, 168, 67, .15);
}

/* ── Menu Table ── */
.menu-section {
    margin: 2rem 0;
}

.menu-section-title {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .2em;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink);
    margin-bottom: .8rem;
}

    .menu-section-title::before {
        content: '';
        width: 22px;
        height: 2px;
        background: var(--gold);
        flex-shrink: 0;
    }

    .menu-section-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(212, 168, 67, .2);
    }

.menu-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: .82rem;
}

    .menu-table thead th {
        background: var(--ink);
        color: var(--gold-light);
        padding: .65rem 1rem;
        text-align: left;
        font-size: .72rem;
        letter-spacing: .12em;
        font-weight: 700;
    }

        .menu-table thead th:last-child {
            text-align: right;
        }

    .menu-table tbody tr {
        border-bottom: 1px solid rgba(212, 168, 67, .1);
    }

        .menu-table tbody tr:nth-child(even) td {
            background: rgba(212, 168, 67, .04);
        }

        .menu-table tbody tr:hover td {
            background: rgba(200, 16, 46, .04);
        }

    .menu-table td {
        padding: .65rem 1rem;
        vertical-align: middle;
        line-height: 1.6;
        color: var(--ink-mid);
    }

        .menu-table td:last-child {
            text-align: right;
            font-weight: 700;
            color: var(--red-dark);
            white-space: nowrap;
        }

    .menu-table .dish-name {
        font-weight: 600;
        color: var(--ink);
    }

    .menu-table .dish-note {
        font-size: .7rem;
        color: var(--ink-light);
        display: block;
        margin-top: .15rem;
    }

    .menu-table .badge-new {
        display: inline-block;
        background: var(--red);
        color: #fff;
        font-size: .55rem;
        font-weight: 700;
        letter-spacing: .06em;
        padding: .08rem .42rem;
        border-radius: 1px;
        margin-left: .4rem;
        vertical-align: middle;
    }

    .menu-table .badge-hot {
        display: inline-block;
        background: #E8700A;
        color: #fff;
        font-size: .55rem;
        font-weight: 700;
        letter-spacing: .06em;
        padding: .08rem .42rem;
        border-radius: 1px;
        margin-left: .4rem;
        vertical-align: middle;
    }

    .menu-table .badge-rec {
        display: inline-block;
        background: var(--gold);
        color: var(--ink);
        font-size: .55rem;
        font-weight: 700;
        letter-spacing: .06em;
        padding: .08rem .42rem;
        border-radius: 1px;
        margin-left: .4rem;
        vertical-align: middle;
    }

/* Set meal box */
.set-box {
    border: 1px solid rgba(212, 168, 67, .28);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0 1.8rem;
    box-shadow: 0 3px 12px rgba(26, 10, 6, .07);
}

.set-box-head {
    background: linear-gradient(135deg, var(--ink), var(--red-deep));
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .6rem;
}

    .set-box-head h3 {
        font-family: 'Noto Serif TC', serif;
        font-size: 1.05rem;
        font-weight: 900;
        color: #fff;
        letter-spacing: .12em;
        border: none;
        padding: 0;
        margin: 0;
    }

    .set-box-head .set-price {
        font-size: 1.1rem;
        font-weight: 900;
        color: var(--gold-light);
        letter-spacing: .04em;
    }

        .set-box-head .set-price small {
            font-size: .65rem;
            opacity: .75;
            font-family: 'Noto Sans TC', sans-serif;
            margin-left: .2rem;
        }

.set-box-body {
    padding: 1.1rem 1.4rem;
    background: #fff;
}

.set-dishes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .5rem .8rem;
}

.set-dish {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-mid);
    padding: .35rem 0;
    border-bottom: 1px dashed rgba(212, 168, 67, .15);
}

    .set-dish::before {
        content: '◆';
        font-size: .5rem;
        color: var(--gold);
        flex-shrink: 0;
    }

.set-note {
    margin-top: .9rem;
    font-size: .72rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-light);
    line-height: 1.8;
    letter-spacing: .04em;
    background: rgba(212, 168, 67, .06);
    border-left: 2px solid var(--gold);
    padding: .5rem .8rem;
}

    .set-note strong {
        color: var(--red);
    }

/* Notice box */
.notice-box {
    background: linear-gradient(135deg, rgba(26, 10, 6, .04), rgba(200, 16, 46, .04));
    border: 1px solid rgba(200, 16, 46, .18);
    border-left: 3px solid var(--red);
    border-radius: 0 4px 4px 0;
    padding: 1rem 1.2rem;
    margin: 1.6rem 0;
    font-size: .78rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-mid);
    line-height: 1.85;
    letter-spacing: .04em;
}

    .notice-box strong {
        color: var(--red);
    }

/* Image gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 1.6rem 0;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
    background: var(--cream);
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
    }

/* placeholder for gallery when no real image */
.gallery-ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--cream), rgba(212, 168, 67, .12));
}

    .gallery-ph span {
        font-size: .65rem;
        font-family: 'Noto Sans TC', sans-serif;
        color: var(--ink-light);
        letter-spacing: .08em;
    }

/* Share / nav between articles */
.art-footer {
    margin-top: 2.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(212, 168, 67, .2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
}

.art-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--ink-light);
    text-decoration: none;
    border: 1.5px solid rgba(26, 10, 6, .14);
    padding: .48rem 1rem;
    border-radius: 2px;
    transition: all .2s;
}

    .art-back:hover {
        border-color: var(--gold);
        color: var(--ink);
    }

.art-share {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.share-lbl {
    font-size: .65rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-light);
    letter-spacing: .1em;
    margin-right: .2rem;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    cursor: pointer;
    border: none;
    transition: transform .2s, opacity .2s;
    text-decoration: none;
}

    .share-btn:hover {
        transform: scale(1.12);
    }

.sb-line {
    background: #06C755;
    color: #fff;
}

.sb-fb {
    background: #1877F2;
    color: #fff;
}

.sb-copy {
    background: var(--ink);
    color: var(--gold);
}

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.sidebar-card {
    background: #fff;
    border: 1px solid rgba(212, 168, 67, .15);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(26, 10, 6, .055);
}

.sb-head {
    background: linear-gradient(135deg, var(--ink), var(--ink-mid));
    padding: .75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.sb-head-icon {
    font-size: .95rem;
}

.sb-head-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--gold-light);
}

.sb-body {
    padding: 1rem 1.1rem;
}

/* Contact sidebar */
.sb-contact-item {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(212, 168, 67, .1);
    font-size: .78rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-mid);
    line-height: 1.7;
}

    .sb-contact-item:last-child {
        border-bottom: none;
    }

.sb-ci-icon {
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: .08rem;
}

.sb-ci-label {
    font-size: .58rem;
    letter-spacing: .16em;
    color: var(--red);
    font-weight: 700;
    display: block;
    margin-bottom: .1rem;
}

.sb-ci-val {
    font-size: .8rem;
    color: var(--ink);
}

    .sb-ci-val a {
        color: var(--red);
        text-decoration: none;
        font-weight: 700;
    }

        .sb-ci-val a:hover {
            text-decoration: underline;
        }

/* Tel CTA in sidebar */
.sb-tel-btn {
    display: block;
    background: var(--red);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: .88rem;
    letter-spacing: .12em;
    padding: .75rem;
    border-radius: 2px;
    margin-top: .8rem;
    transition: background .2s;
}

    .sb-tel-btn:hover {
        background: var(--red-dark);
    }

/* Related articles */
.sb-related-item {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(212, 168, 67, .1);
    text-decoration: none;
    transition: background .2s;
    cursor: pointer;
}

    .sb-related-item:last-child {
        border-bottom: none;
    }

    .sb-related-item:hover .sb-ri-title {
        color: var(--red);
    }

.sb-ri-icon {
    width: 42px;
    height: 42px;
    border-radius: 2px;
    flex-shrink: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid rgba(212, 168, 67, .15);
}

.sb-ri-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    transition: color .2s;
}

.sb-ri-date {
    font-size: .62rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-light);
    margin-top: .18rem;
    letter-spacing: .04em;
}

/* Menu category quick-jump */
.qj-list {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.qj-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-mid);
    text-decoration: none;
    padding: .42rem .5rem;
    border-radius: 2px;
    transition: background .18s, color .18s;
    letter-spacing: .04em;
}

    .qj-item:hover {
        background: rgba(200, 16, 46, .06);
        color: var(--red);
    }

    .qj-item::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
    }

    .qj-item .qj-count {
        margin-left: auto;
        font-size: .65rem;
        color: var(--ink-light);
        background: var(--cream);
        padding: .08rem .4rem;
        border-radius: 8px;
    }

/* ── CTA Strip ── */
.sec-cta {
    background: var(--red);
    padding: 2.6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .sec-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255, 255, 255, .025) 28px, rgba(255, 255, 255, .025) 56px);
    }

    .sec-cta > * {
        position: relative;
        z-index: 1;
    }

/* ── Footer ── */
footer {
    background: var(--ink);
    border-top: 2px solid var(--gold);
    padding: 1.8rem 5%;
    text-align: center;
    font-size: .73rem;
    color: rgba(253, 248, 240, .37);
    letter-spacing: .1em;
    line-height: 2.3;
}

    footer strong {
        color: var(--gold);
        font-size: .83rem;
    }

/* ── Back to top ── */
#btt {
    position: fixed;
    bottom: 26px;
    right: 22px;
    width: 46px;
    height: 46px;
    background: #06C755;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .24);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s;
    z-index: 500;
}

    #btt.vis {
        opacity: 1;
        transform: translateY(0);
    }

    #btt:hover {
        background: #04b84d;
        transform: translateY(-2px) !important;
    }

    #btt svg {
        width: 18px;
        height: 18px;
        fill: #fff;
    }

/* ── Reveal ── */
.rv {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}

    .rv.in {
        opacity: 1;
        transform: translateY(0);
    }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .page-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        order: 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:600px) {
    .page-body {
        padding: 2rem 4% 4rem;
    }

    .set-dishes {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-table {
        font-size: .76rem;
    }

        .menu-table td,
        .menu-table th {
            padding: .55rem .7rem;
        }
}
/* 侧边栏相关消息项 - 左右布局 */
.sb-related-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition: background 0.2s;
}

    .sb-related-item:last-child {
        border-bottom: none;
    }

    .sb-related-item:hover {
        background: rgba(212, 168, 67, 0.05);
    }

/* 左侧缩略图/图标 */
.sb-ri-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 67, 0.2);
}

    .sb-ri-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sb-ri-icon span {
        font-size: 1.5rem;
    }

/* 右侧内容 */
.sb-ri-content {
    flex: 1;
}

.sb-ri-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 4px;
}

a.sb-related-item .sb-ri-title {
    color: var(--ink);
}

a.sb-related-item:hover .sb-ri-title {
    color: var(--red);
}

.sb-ri-date {
    font-size: 0.62rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--ink-light);
    letter-spacing: 0.04em;
}