/* ══════════════════════════════════════
   BLOG / JOURNAL SPECIFIC STYLES
══════════════════════════════════════ */

/* ── Page Hero (Journal) ── */
.page-hero {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 8vw, 96px) 0;
    text-align: center;
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(201, 168, 76, 0.18) 0%, transparent 65%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero .label-tag {
    color: var(--gold-light);
    justify-content: center;
    display: flex;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-family: var(--fd);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.05;
    margin-bottom: 14px;
}

.page-hero h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.page-hero p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.8;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.breadcrumb-trail a {
    transition: color var(--ease);
}

.breadcrumb-trail a:hover {
    color: var(--gold-light);
}

.breadcrumb-trail i {
    font-size: 9px;
}

.breadcrumb-trail span {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Category Filter Bar ── */
.cat-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--sticky-d);
    z-index: 900;
}

@media (max-width: 767px) {
    .cat-bar {
        top: var(--sticky-m);
    }
}

.cat-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 16px;
}

.cat-bar-inner::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    padding: 0 18px;
    height: 46px;
    display: flex;
    align-items: center;
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid-grey);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--ease);
}

.cat-pill:hover {
    color: var(--charcoal);
}

.cat-pill.active {
    color: var(--charcoal);
    border-bottom-color: var(--gold);
}

/* ── Featured Article Card ── */
.featured-article-sec {
    background: var(--cream);
    padding: 56px 0 0;
}

.feat-article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
    background: var(--white);
    overflow: hidden;
    transition: box-shadow var(--ease);
}

.feat-article-card:hover {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .feat-article-card {
        grid-template-columns: 1fr;
    }
}

.feat-img {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.feat-img-emoji {
    font-size: 100px;
    opacity: 0.18;
    user-select: none;
    transition: transform .6s ease;
}

.feat-article-card:hover .feat-img-emoji {
    transform: scale(1.08);
}

.feat-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: var(--gold);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.feat-body {
    padding: clamp(28px, 5vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.feat-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.feat-date {
    font-size: 11px;
    color: var(--mid-grey);
    letter-spacing: 0.06em;
}

.feat-read {
    font-size: 11px;
    color: var(--mid-grey);
    letter-spacing: 0.06em;
}

.feat-title {
    font-family: var(--fd);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.feat-title em {
    color: var(--gold);
    font-style: italic;
}

.feat-excerpt {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.85;
    margin-bottom: 24px;
}

.feat-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    font-family: var(--fd);
    flex-shrink: 0;
}

.author-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.author-role {
    font-size: 11px;
    color: var(--mid-grey);
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--charcoal);
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 2px;
    transition: all var(--ease);
    margin-left: auto;
    text-decoration: none;
}

.read-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    gap: 12px;
}

/* ── Article Grid Cards ── */
.articles-sec {
    padding: 52px 0 72px;
    background: var(--cream);
}

.article-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.09);
}

.article-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-img-emoji {
    font-size: 60px;
    opacity: 0.2;
    user-select: none;
    transition: transform .5s ease;
}

.article-card:hover .article-img-emoji {
    transform: scale(1.08);
}

.article-cat-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    padding: 4px 10px;
}

/* Category colors */
.bc-fragrance {
    background: rgba(201, 168, 76, 0.9);
    color: #fff;
}

.bc-craft {
    background: rgba(26, 26, 26, 0.85);
    color: #fff;
}

.bc-travel {
    background: rgba(15, 45, 50, 0.85);
    color: #fff;
}

.bc-wellness {
    background: rgba(39, 115, 74, 0.85);
    color: #fff;
}

.bc-gift {
    background: rgba(150, 50, 80, 0.85);
    color: #fff;
}

.bc-interview {
    background: rgba(50, 50, 150, 0.85);
    color: #fff;
}

.ai-bg-a {
    background: linear-gradient(135deg, #1a1208, #2d1e0f);
}

.ai-bg-b {
    background: linear-gradient(135deg, #0d1a1a, #0f2d2a);
}

.ai-bg-c {
    background: linear-gradient(135deg, #1a1222, #2a1540);
}

.ai-bg-d {
    background: linear-gradient(135deg, #12180d, #1e2d0f);
}

.ai-bg-e {
    background: linear-gradient(135deg, #1a0d0d, #2d1010);
}

.ai-bg-f {
    background: linear-gradient(135deg, #0d1220, #10152d);
}

.article-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.article-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.article-date {
    font-size: 11px;
    color: var(--light-grey);
    letter-spacing: 0.04em;
}

.article-title {
    font-family: var(--fd);
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.25;
    margin-bottom: 10px;
    transition: color var(--ease);
}

.article-card:hover .article-title {
    color: var(--gold);
}

.article-excerpt {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 16px;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.art-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.art-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    font-family: var(--fd);
    flex-shrink: 0;
}

.art-author-name {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.art-read-time {
    font-size: 10px;
    color: var(--mid-grey);
    letter-spacing: 0.06em;
}

.art-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    color: var(--mid-grey);
    font-size: 13px;
    transition: all var(--ease);
    flex-shrink: 0;
}

.article-card:hover .art-arrow {
    background: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}

/* ── Sidebar (Most Read / Topics) ── */
.sidebar-popular h6 {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.popular-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--ease);
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-item:hover .pop-title {
    color: var(--gold);
}

.pop-num {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 300;
    color: var(--light-grey);
    flex-shrink: 0;
    width: 22px;
    line-height: 1;
    margin-top: 2px;
}

.pop-body {
    flex: 1;
    min-width: 0;
}

.pop-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.pop-title {
    font-family: var(--fd);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color var(--ease);
}

.pop-date {
    font-size: 10px;
    color: var(--light-grey);
    letter-spacing: 0.06em;
}

/* ── Reading Progress Bar ── */
.progress-bar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1300;
    height: 3px;
    background: transparent;
    pointer-events: none;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transition: width .1s linear;
}

/* ── Article Hero (Single Post) ── */
.article-hero {
    position: relative;
    min-height: clamp(360px, 55vh, 580px);
    background: linear-gradient(135deg, #1a1208, #2d1e0f 50%, #1a0d14);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 50%, rgba(201, 168, 76, 0.22) 0%, transparent 55%);
}

.article-hero-deco {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(120px, 22vw, 260px);
    opacity: 0.07;
    user-select: none;
    pointer-events: none;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(32px, 5vw, 56px) 0;
    color: #fff;
    width: 100%;
}

.art-cat-tag {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 20px;
}

.article-hero-content .article-title {
    font-family: var(--fd);
    font-size: clamp(30px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 800px;
}

.article-hero-content .article-title em {
    color: var(--gold-light);
    font-style: italic;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    font-family: var(--fd);
    flex-shrink: 0;
}

.hero-author-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hero-author-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-meta-item {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Share Sidebar ── */
.share-sidebar {
    position: sticky;
    top: calc(var(--sticky-d) + 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
}

.share-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light-grey);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin-bottom: 16px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--mid-grey);
    cursor: pointer;
    transition: all var(--ease);
    border-radius: 2px;
}

.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.bookmark-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--mid-grey);
    cursor: pointer;
    transition: all var(--ease);
    border-radius: 2px;
}

.bookmark-btn:hover,
.bookmark-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

/* ── Article Content Typography ── */
.article-layout {
    padding: 64px 0 80px;
    background: var(--white);
}

.article-content {
    max-width: 680px;
}

.article-content p {
    font-family: var(--fd);
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 300;
    line-height: 1.85;
    color: var(--charcoal);
    margin-bottom: 26px;
    letter-spacing: 0.01em;
}

.article-content h2 {
    font-family: var(--fd);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 44px 0 18px;
}

.article-content h2 em {
    color: var(--gold);
    font-style: italic;
}

.article-content p:first-of-type::first-letter {
    font-family: var(--fd);
    font-size: 5.2em;
    font-weight: 300;
    float: left;
    line-height: 0.75;
    margin: 0.08em 0.1em 0 0;
    color: var(--gold);
}

.pull-quote {
    border-left: 3px solid var(--gold);
    padding: 8px 0 8px 28px;
    margin: 40px 0;
}

.pull-quote p {
    font-family: var(--fd) !important;
    font-size: clamp(20px, 2.5vw, 28px) !important;
    font-style: italic;
    line-height: 1.45 !important;
    color: var(--charcoal) !important;
    margin: 0 !important;
    letter-spacing: 0.02em;
}

.pull-quote p::first-letter {
    all: unset;
}

.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid-grey);
    font-style: normal;
}

.article-img-block-inner {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1208, #2d1e0f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin: 32px 0;
}

.ingredient-card {
    border: 1px solid var(--border);
    padding: 16px;
    text-align: center;
    transition: all var(--ease);
    background: var(--cream);
}

.ingredient-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.12);
}

.ingredient-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.ingredient-name {
    font-family: var(--fd);
    font-size: 15px;
    display: block;
    margin-bottom: 3px;
}

.ingredient-origin {
    font-size: 10px;
    color: var(--mid-grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.author-bio {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 28px;
    margin: 44px 0 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 40px 0 0;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.art-tag {
    padding: 5px 14px;
    border: 1px solid var(--border);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--mid-grey);
    cursor: pointer;
    transition: all var(--ease);
}

.art-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.article-img-block {
    margin: 40px -20px;
}

@media (min-width: 768px) {
    .article-img-block {
        margin: 44px 0;
    }
}

.article-img-block-inner {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1208, #2d1e0f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-img-block-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
}

.article-img-emoji {
    font-size: 80px;
    opacity: 0.15;
    user-select: none;
}

.img-caption {
    font-size: 11px;
    color: var(--mid-grey);
    letter-spacing: 0.06em;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.bio-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    font-family: var(--fd);
    flex-shrink: 0;
}

.bio-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.bio-role {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bio-text {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.7;
}

/* ── TOC and Sidebar Product ── */
.toc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: all var(--ease);
}

.toc-item:hover .toc-text {
    color: var(--gold);
}

.toc-item.active .toc-text {
    color: var(--gold);
    font-weight: 500;
}

.toc-num {
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 300;
    color: var(--light-grey);
    flex-shrink: 0;
    width: 18px;
}

.toc-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--mid-grey);
    transition: color var(--ease);
}

.sidebar-section {
    margin-bottom: 36px;
}

.sidebar-head {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.sidebar-product {
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow var(--ease);
    cursor: pointer;
}

.sidebar-product:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.sp-img {
    background: var(--cream);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
}

.sp-body {
    padding: 14px;
}

.sp-brand {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.sp-name {
    font-family: var(--fd);
    font-size: 17px;
    margin-bottom: 3px;
}

.sp-note {
    font-size: 11px;
    color: var(--mid-grey);
    font-style: italic;
    margin-bottom: 12px;
}

.sp-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-price {
    font-family: var(--fd);
    font-size: 19px;
}

.sp-btn {
    background: var(--charcoal);
    color: #fff;
    border: none;
    font-family: var(--fb);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 14px;
    cursor: pointer;
    transition: background var(--ease);
}

.sp-btn:hover {
    background: var(--gold);
}

/* ── Related Articles ── */
.rel-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rel-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
}

.rel-img {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    overflow: hidden;
    flex-shrink: 0;
}

/* ── Pagination ── */
.pagination-wrap {
    padding: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pg-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 500;
    color: var(--mid-grey);
    cursor: pointer;
    transition: all var(--ease);
}

.pg-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pg-btn.active {
    background: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}

.pg-sep {
    font-size: 12px;
    color: var(--light-grey);
}

.related-sec {
    background: var(--cream);
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.related-head {
    text-align: center;
    margin-bottom: 44px;
}

.related-head h2 {
    font-family: var(--fd);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.related-head h2 em {
    color: var(--gold);
    font-style: italic;
}

.rel-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rel-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
}

.rel-img {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    overflow: hidden;
    flex-shrink: 0;
}

.rel-img-emoji {
    opacity: 0.22;
    transition: transform .5s ease;
    user-select: none;
}

.rel-card:hover .rel-img-emoji {
    transform: scale(1.08);
}

.rel-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rel-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.rel-title {
    font-family: var(--fd);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.25;
    margin-bottom: 10px;
    flex: 1;
    transition: color var(--ease);
}

.rel-card:hover .rel-title {
    color: var(--gold);
}

.rel-meta {
    font-size: 11px;
    color: var(--mid-grey);
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.article-card {
    animation: fadeUp .5s ease both;
}