/* ═══════════════════════════════════════════════════════════
   AMOUR STORIES — CSS
   Prefix: st-
   Palette: gold #c1a36b, cream #faf6ec, navy #0B1929
   ═══════════════════════════════════════════════════════════ */

/* ─── Base tokens ─── */
.st-wrap          { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.st-wrap-narrow   { max-width: 780px;  margin: 0 auto; padding: 0 1.5rem; }

.st-eyebrow {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #9d8348;
    margin-bottom: .75rem;
}
.st-eyebrow i { margin-right: .35rem; }

.st-display {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    color: #0B1929;
    font-weight: 500;
    letter-spacing: -.01em;
    margin: 0 0 1rem;
}
.st-display em { font-style: italic; color: #c1a36b; }

.st-divider {
    display: flex; align-items: center; justify-content: center;
    gap: .75rem; color: #c1a36b; font-size: 11px;
    margin: 1.5rem 0 2rem;
}
.st-divider::before, .st-divider::after {
    content: ""; flex: 0 0 60px; height: 1px;
    background: linear-gradient(90deg, transparent, #c1a36b);
}
.st-divider::after { background: linear-gradient(90deg, #c1a36b, transparent); }
.st-divider span { color: #c1a36b; }

.st-dot { color: #c1a36b; margin: 0 .35rem; opacity: .6; }

/* Corner ornaments */
.st-corner {
    position: absolute; width: 28px; height: 28px;
    border: 1px solid rgba(193, 163, 107, .55);
    pointer-events: none;
}
.st-corner.gold { border-color: rgba(229, 212, 161, .7); }
.st-corner.tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.st-corner.tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.st-corner.bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.st-corner.br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

/* Reveal-on-scroll */
[data-reveal] {
    opacity: 0; transform: translateY(20px);
    transition: opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   MASTHEAD (index + category header)
   ═══════════════════════════════════════════════════════════ */
.st-masthead {
    position: relative;
    padding: 7rem 0 4rem;
    background: #faf6ec;
    overflow: hidden;
    text-align: center;
}
.st-masthead-bg {
    position: absolute; inset: 0; opacity: .35; pointer-events: none;
    background:
        radial-gradient(ellipse 800px 400px at 20% 20%, rgba(193, 163, 107, .15), transparent),
        radial-gradient(ellipse 800px 400px at 80% 80%, rgba(193, 163, 107, .12), transparent);
}
.st-masthead-corners { position: absolute; inset: 0; pointer-events: none; }
.st-masthead-inner { position: relative; z-index: 2; }

.st-masthead-lead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #5a5a5a;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.5;
}

.st-back-link {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    color: #9d8348;
    text-decoration: none;
    font-size: .95rem;
    letter-spacing: .05em;
    margin-bottom: 1.25rem;
    transition: color .2s;
}
.st-back-link:hover { color: #c1a36b; }

/* Category masthead variant */
.st-masthead--category::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--cat-color, #c1a36b), transparent);
}

/* ═══════════════════════════════════════════════════════════
   FEATURED HERO (1 bài lớn nhất trên index)
   ═══════════════════════════════════════════════════════════ */
.st-featured { padding: 0 0 4rem; background: #faf6ec; }
.st-featured-link {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 0; min-height: 480px;
    text-decoration: none; color: inherit;
    border-radius: 6px; overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 30px rgba(11, 25, 41, .07);
    border: 1px solid rgba(193, 163, 107, .15);
    transition: transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s;
}
.st-featured-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 40px rgba(11, 25, 41, .12);
}
.st-featured-media { position: relative; overflow: hidden; min-height: 340px; }
.st-featured-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(.16,.84,.44,1);
}
.st-featured-link:hover .st-featured-media img { transform: scale(1.04); }
.st-featured-grade {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(11, 25, 41, .15));
}
.st-featured-text {
    padding: 3rem 2.5rem;
    display: flex; flex-direction: column;
    justify-content: center;
}
.st-featured-tag {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #9d8348;
    font-size: .9rem;
    letter-spacing: .15em;
    margin-bottom: .5rem;
}
.st-featured-cat {
    display: inline-block; align-self: flex-start;
    padding: 3px 11px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9d8348;
    border: 1px solid rgba(193, 163, 107, .4);
    border-radius: 30px;
    margin-bottom: 1rem;
}
.st-featured-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    line-height: 1.2;
    color: #0B1929;
    font-weight: 500;
    margin: 0 0 1rem;
    letter-spacing: -.005em;
}
.st-featured-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0 0 1.5rem;
}
.st-featured-meta {
    font-size: .85rem;
    color: #888;
    letter-spacing: .03em;
    margin-bottom: 1.5rem;
}
.st-featured-cta {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #9d8348;
    font-size: 1.05rem;
    letter-spacing: .04em;
    align-self: flex-start;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color .2s;
}
.st-featured-link:hover .st-featured-cta { color: #c1a36b; }

@media (max-width: 768px) {
    .st-featured-link { grid-template-columns: 1fr; }
    .st-featured-media { min-height: 260px; }
    .st-featured-text { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   CATEGORIES BAR (pills)
   ═══════════════════════════════════════════════════════════ */
.st-cats-bar {
    padding: 2rem 0;
    background: #fff;
    border-top: 1px solid rgba(193, 163, 107, .12);
    border-bottom: 1px solid rgba(193, 163, 107, .12);
    position: sticky; top: 0; z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .92);
}
.st-cats {
    display: flex; flex-wrap: wrap; gap: .6rem;
    justify-content: center;
}
.st-cat-pill {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .95rem;
    letter-spacing: .04em;
    padding: 6px 14px;
    border: 1px solid rgba(193, 163, 107, .35);
    border-radius: 30px;
    color: #5a5a5a;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: all .25s;
}
.st-cat-pill i { margin-right: .35rem; opacity: .7; }
.st-cat-pill:hover {
    border-color: #c1a36b; color: #9d8348;
    background: rgba(193, 163, 107, .05);
}
.st-cat-pill.active {
    background: linear-gradient(180deg, #c1a36b, #9d8348);
    color: #fff;
    border-color: #9d8348;
}

/* ═══════════════════════════════════════════════════════════
   GRID + CARDS
   ═══════════════════════════════════════════════════════════ */
.st-grid-section { padding: 4rem 0 5rem; background: #faf6ec; }

.st-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) { .st-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .st-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.st-card {
    background: #fff;
    border: 1px solid rgba(193, 163, 107, .12);
    border-radius: 6px;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.16,.84,.44,1), box-shadow .4s;
    box-shadow: 0 1px 8px rgba(11, 25, 41, .04);
}
.st-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(11, 25, 41, .1);
}
.st-card-link { text-decoration: none; color: inherit; display: block; }

.st-card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.st-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(.16,.84,.44,1);
}
.st-card:hover .st-card-media img { transform: scale(1.05); }
.st-card-grade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(11, 25, 41, .15));
}
.st-card-featured {
    position: absolute; top: 12px; right: 12px;
    background: linear-gradient(180deg, #c1a36b, #9d8348);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .75rem;
    letter-spacing: .1em;
    padding: 3px 9px;
    border-radius: 30px;
    z-index: 2;
}

.st-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.st-card-cat {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cat-color, #9d8348);
    margin-bottom: .6rem;
}
.st-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #0B1929;
    font-weight: 500;
    margin: 0 0 .6rem;
    /* clamp 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.st-card-excerpt {
    font-size: .92rem;
    line-height: 1.55;
    color: #5a5a5a;
    margin: 0 0 .8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.st-card-meta {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: .5rem; font-size: .8rem; color: #888;
    letter-spacing: .03em;
}
.st-card-meta > span:not(:first-child)::before { content: "·"; color: #c1a36b; margin-right: .5rem; }
.st-card-author { color: #9d8348; }

/* Pagination */
.st-pagination {
    display: flex; justify-content: center; margin-top: 3rem;
}
.st-pagination .pagination { gap: .25rem; }
.st-pagination .page-link {
    color: #5a5a5a; border: 1px solid rgba(193, 163, 107, .25);
    border-radius: 4px !important; padding: .4rem .8rem;
}
.st-pagination .page-item.active .page-link {
    background: linear-gradient(180deg, #c1a36b, #9d8348);
    border-color: #9d8348; color: #fff;
}

/* Empty state */
.st-empty {
    padding: 5rem 1rem; text-align: center; color: #888;
}
.st-empty i { font-size: 3rem; color: #c1a36b; opacity: .5; }
.st-empty p { margin-top: 1rem; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; }

/* ═══════════════════════════════════════════════════════════
   POST DETAIL — HERO
   ═══════════════════════════════════════════════════════════ */
.st-post-hero {
    position: relative;
    min-height: 70vh;
    display: flex; align-items: flex-end;
    overflow: hidden;
    color: #faf6ec;
}
.st-post-hero-media {
    position: absolute; inset: 0; overflow: hidden;
}
.st-post-hero-media img {
    width: 100%; height: 100%; object-fit: cover;
    animation: st-kenburns 24s ease-in-out infinite alternate;
}
@keyframes st-kenburns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}
.st-post-hero-grade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,25,41,.3) 0%, rgba(11,25,41,.65) 60%, rgba(11,25,41,.85) 100%);
}
.st-post-hero-corners { position: absolute; inset: 0; pointer-events: none; }

.st-post-hero-inner {
    position: relative; z-index: 2;
    padding: 5rem 0 4rem;
    text-align: center;
}
.st-post-hero-inner .st-back-link { color: rgba(229, 212, 161, .85); }
.st-post-cat {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 212, 161, .5);
    border-radius: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #E5D4A1;
    text-decoration: none;
    margin: 0 0 1.5rem;
}
.st-post-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: #faf6ec;
    font-weight: 500;
    margin: 0 0 1.25rem;
    letter-spacing: -.005em;
}
.st-post-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(250, 246, 236, .85);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.st-post-meta {
    display: flex; flex-direction: column; align-items: center;
    gap: 1rem;
}
.st-post-author {
    display: inline-flex; align-items: center; gap: .85rem;
    color: #faf6ec; text-decoration: none;
}
.st-post-author img {
    width: 48px; height: 48px; border-radius: 50%;
    border: 2px solid rgba(229, 212, 161, .5);
    object-fit: cover;
}
.st-post-author span { text-align: left; }
.st-post-author strong { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 500; display: block; }
.st-post-author em {
    font-family: 'Cormorant Garamond', serif;
    font-size: .85rem; color: rgba(229, 212, 161, .8);
}
.st-post-meta-info {
    font-size: .85rem;
    color: rgba(250, 246, 236, .7);
    letter-spacing: .03em;
}
.st-post-meta-info i { margin-right: .2rem; }

/* ═══════════════════════════════════════════════════════════
   TL;DR BOX (GEO)
   ═══════════════════════════════════════════════════════════ */
.st-tldr-section { padding: 3rem 0 0; background: #faf6ec; }
.st-tldr {
    background: linear-gradient(180deg, #fff 0%, #faf6ec 100%);
    border-left: 3px solid #c1a36b;
    padding: 1.5rem 1.75rem;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 1px 12px rgba(193, 163, 107, .1);
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}
.st-tldr-label {
    font-family: 'Playfair Display', serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .25em;
    color: #c1a36b;
    margin-bottom: .5rem;
}
.st-tldr p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.55;
    color: #2e2e2e;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PROSE (article content)
   ═══════════════════════════════════════════════════════════ */
.st-post-content { padding: 3rem 0 2rem; background: #faf6ec; }

.st-prose {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #2e2e2e;
    font-family: 'Inter', sans-serif;
}
.st-prose > *:first-child::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem; float: left;
    line-height: .85; padding: .3rem .65rem 0 0;
    color: #c1a36b; font-weight: 500;
}
.st-prose h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #0B1929; font-weight: 500;
    margin: 3rem 0 1rem; line-height: 1.2;
}
.st-prose h2::before {
    content: ""; display: block;
    width: 50px; height: 1px;
    background: linear-gradient(90deg, #c1a36b, transparent);
    margin-bottom: .8rem;
}
.st-prose h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: #1A2C45;
    font-weight: 500;
    margin: 2.2rem 0 .8rem;
}
.st-prose p { margin: 0 0 1.3rem; }
.st-prose a { color: #9d8348; text-decoration: underline; text-underline-offset: 3px; }
.st-prose a:hover { color: #c1a36b; }
.st-prose blockquote {
    border-left: 3px solid #c1a36b;
    margin: 2rem 0; padding: .5rem 0 .5rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: #5a5a5a;
    line-height: 1.5;
}
.st-prose ul, .st-prose ol { margin: 0 0 1.3rem; padding-left: 1.5rem; }
.st-prose li { margin-bottom: .5rem; }
.st-prose img {
    max-width: 100%; height: auto;
    border-radius: 6px; margin: 2rem 0;
    box-shadow: 0 2px 20px rgba(11, 25, 41, .08);
}
.st-prose hr {
    border: none; height: 1px;
    background: linear-gradient(90deg, transparent, #c1a36b, transparent);
    margin: 3rem 0;
}
.st-prose code {
    background: rgba(193, 163, 107, .1); color: #9d8348;
    padding: 2px 6px; border-radius: 3px;
    font-size: .9em;
}

/* Tags */
.st-post-tags { margin: 2.5rem 0 1rem; }
.st-tags-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #9d8348;
    margin-right: .5rem;
    font-size: .9rem;
}
.st-tag {
    display: inline-block;
    font-size: .82rem;
    color: #5a5a5a;
    border: 1px solid rgba(193, 163, 107, .25);
    padding: 2px 10px;
    border-radius: 30px;
    margin-right: .3rem; margin-bottom: .3rem;
}

/* Share */
.st-share {
    display: flex; align-items: center; gap: .75rem;
    margin: 1.5rem 0 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(193, 163, 107, .2);
    border-bottom: 1px solid rgba(193, 163, 107, .2);
}
.st-share-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #9d8348;
    margin-right: .5rem;
}
.st-share a, .st-share button {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(193, 163, 107, .3);
    color: #9d8348;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
}
.st-share a:hover, .st-share button:hover {
    background: linear-gradient(180deg, #c1a36b, #9d8348);
    color: #fff;
    border-color: #9d8348;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS HEAD (eyebrow + title)
   ═══════════════════════════════════════════════════════════ */
.st-section-head { margin-bottom: 2rem; }
.st-section-head.center { text-align: center; }
.st-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #0B1929; font-weight: 500;
    margin: 0 0 .5rem;
}
.st-comments-count {
    color: #c1a36b; font-weight: 400;
    font-size: .8em;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.st-faq-section { padding: 3rem 0; background: #faf6ec; }
.st-faq-list { display: flex; flex-direction: column; gap: .75rem; }
.st-faq-item {
    background: #fff;
    border: 1px solid rgba(193, 163, 107, .2);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color .2s;
}
.st-faq-item[open] { border-color: rgba(193, 163, 107, .5); }
.st-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.4rem;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #0B1929;
    font-weight: 500;
}
.st-faq-item summary::-webkit-details-marker { display: none; }
.st-faq-icon {
    width: 22px; height: 22px;
    position: relative; flex-shrink: 0;
}
.st-faq-icon::before, .st-faq-icon::after {
    content: ""; position: absolute;
    background: #c1a36b;
    top: 50%; left: 50%;
    transition: transform .3s;
}
.st-faq-icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.st-faq-icon::after  { width: 1px; height: 12px; transform: translate(-50%, -50%); }
.st-faq-item[open] .st-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.st-faq-a {
    padding: 0 1.4rem 1.2rem;
    color: #5a5a5a; line-height: 1.65;
    font-size: .98rem;
}

/* ═══════════════════════════════════════════════════════════
   AUTHOR CARD
   ═══════════════════════════════════════════════════════════ */
.st-author-card-section { padding: 3rem 0; background: #faf6ec; }
.st-author-card {
    display: grid; grid-template-columns: 130px 1fr;
    gap: 2rem; align-items: center;
    background: linear-gradient(135deg, #fff 0%, #faf6ec 100%);
    border: 1px solid rgba(193, 163, 107, .25);
    border-radius: 6px;
    padding: 2rem 2.5rem;
    box-shadow: 0 1px 12px rgba(193, 163, 107, .08);
}
.st-author-card > img {
    width: 130px; height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(193, 163, 107, .35);
}
.st-author-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: #0B1929;
    margin: .25rem 0 .25rem;
    font-weight: 500;
}
.st-author-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #9d8348;
    margin: 0 0 .75rem;
}
.st-author-bio {
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0 0 1rem;
    font-size: .95rem;
}
.st-author-socials { display: flex; gap: .5rem; margin-bottom: .75rem; }
.st-author-socials a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(193, 163, 107, .1);
    color: #9d8348;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: all .25s;
}
.st-author-socials a:hover { background: #c1a36b; color: #fff; }

.st-link-arrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #9d8348;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.st-link-arrow:hover { border-bottom-color: #c1a36b; }

@media (max-width: 640px) {
    .st-author-card { grid-template-columns: 1fr; text-align: center; }
    .st-author-card > img { margin: 0 auto; }
    .st-author-socials { justify-content: center; }
}

/* Author page — large hero */
.st-author-masthead {
    position: relative; padding: 6rem 0 4rem;
    background: #faf6ec; text-align: center; overflow: hidden;
}
.st-author-avatar-lg {
    width: 130px; height: 130px; border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(193, 163, 107, .4);
    margin-bottom: 1.5rem;
    display: unset;
}
.st-author-role {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #9d8348;
    font-size: 1.15rem;
    margin: -.5rem 0 1rem;
}
.st-author-bio-lg {
    font-size: 1rem;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}
.st-author-masthead .st-author-socials { justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   COMMENTS
   ═══════════════════════════════════════════════════════════ */
.st-comments-section { padding: 3rem 0 4rem; background: #faf6ec; }

.st-alert {
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: .95rem;
}
.st-alert-success { background: #f0f7ed; border-left: 3px solid #4a8a3e; color: #2d5a26; }
.st-alert-error { background: #fdf2f0; border-left: 3px solid #c44536; color: #7a261d; }

.st-comment-form {
    background: #fff;
    border: 1px solid rgba(193, 163, 107, .2);
    border-radius: 6px;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
}
.st-reply-banner {
    display: flex; justify-content: space-between; align-items: center;
    padding: .65rem 1rem;
    background: rgba(193, 163, 107, .1);
    border-left: 3px solid #c1a36b;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: .9rem;
}
.st-form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) { .st-form-row { grid-template-columns: 1fr; } }
.st-field { margin-bottom: 1rem; }
.st-field label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .9rem;
    color: #9d8348;
    margin-bottom: .35rem;
    display: block;
}
.st-field input, .st-field textarea {
    width: 100%;
    padding: .65rem .85rem;
    border: 1px solid rgba(193, 163, 107, .3);
    border-radius: 4px;
    background: #faf6ec;
    color: #2e2e2e;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
}
.st-field input:focus, .st-field textarea:focus {
    outline: none;
    border-color: #c1a36b;
    box-shadow: 0 0 0 3px rgba(193, 163, 107, .15);
}

.st-btn-gold {
    background: linear-gradient(180deg, #c1a36b, #9d8348);
    color: #fff;
    border: none;
    padding: .75rem 1.75rem;
    border-radius: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: .05em;
    cursor: pointer;
    position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.st-btn-gold::before {
    content: ""; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transition: left .6s;
}
.st-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 163, 107, .35);
}
.st-btn-gold:hover::before { left: 100%; }

.st-form-note {
    font-size: .8rem; color: #888;
    margin: .75rem 0 0;
}

/* Comments list */
.st-comments-list { display: flex; flex-direction: column; gap: 1.5rem; }
.st-comment {
    display: grid; grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(193, 163, 107, .15);
    border-radius: 6px;
}
.st-comment--reply {
    margin-top: 1rem;
    margin-left: 1.5rem;
    background: rgba(193, 163, 107, .04);
}
.st-comment-avatar {
    width: 48px; height: 48px;
    border-radius: 50%; object-fit: cover;
}
.st-comment-body header {
    display: flex; align-items: baseline; gap: .75rem;
    margin-bottom: .35rem;
}
.st-comment-author {
    font-family: 'Playfair Display', serif;
    color: #0B1929;
    font-weight: 500;
    font-size: 1rem;
}
.st-comment-body time {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .85rem;
    color: #888;
}
.st-comment-content {
    color: #2e2e2e;
    line-height: 1.6;
    margin: 0 0 .5rem;
    white-space: pre-line;
}
.st-comment-reply {
    background: none; border: none;
    color: #9d8348;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: .9rem;
    cursor: pointer; padding: 0;
}
.st-comment-reply:hover { color: #c1a36b; }

.st-comments-empty {
    text-align: center; padding: 3rem 1rem;
    color: #888;
}
.st-comments-empty i { font-size: 2.5rem; color: #c1a36b; opacity: .4; }
.st-comments-empty p {
    margin: 1rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════
   RELATED POSTS
   ═══════════════════════════════════════════════════════════ */
.st-related {
    padding: 4rem 0 5rem;
    background: #fff;
    border-top: 1px solid rgba(193, 163, 107, .12);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .st-masthead { padding: 5rem 0 3rem; }
    .st-post-hero { min-height: 60vh; }
    .st-post-hero-inner { padding: 4rem 0 3rem; }
    .st-tldr { margin-top: -2rem; padding: 1.25rem 1.4rem; }
    .st-tldr p { font-size: 1.05rem; }
    .st-prose { font-size: 1rem; }
    .st-prose > *:first-child::first-letter { font-size: 3.5rem; }
    .st-grid-section { padding: 3rem 0 4rem; }
    .st-comment { padding: 1rem; gap: .75rem; grid-template-columns: 40px 1fr; }
    .st-comment-avatar { width: 40px; height: 40px; }
}
