/*
Theme Name: Women Digests Daily
Theme URI: https://womendigestsdaily.com
Author: Women Digest
Description: A warm, editorial WordPress theme for women's lifestyle content — beauty, fashion, wellness and life.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: women-digests-daily
*/

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --cream: #FAF7F2;
  --rose: #C4614A;
  --blush: #E8B4A0;
  --terracotta: #A04830;
  --charcoal: #1E1A18;
  --warm-gray: #7A6F6A;
  --light-gray: #EDE8E3;
  --gold: #BFA068;
  --white: #fff;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }
.skip { position: absolute; top: -100%; left: 0; background: var(--rose); color: #fff; padding: 8px 16px; font-size: 13px; font-weight: 700; z-index: 9999; }
.skip:focus { top: 0; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap { background: var(--charcoal); color: var(--cream); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 8px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 56px; animation: tick 55s linear infinite; white-space: nowrap; width: max-content; }
.ticker-inner:hover { animation-play-state: paused; }
.tdot { color: var(--blush); flex-shrink: 0; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 9px 40px; border-bottom: 1px solid var(--light-gray); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--warm-gray); }
.topbar a { color: var(--warm-gray); transition: color .2s; }
.topbar a:hover { color: var(--rose); }
.topbar-r { display: flex; gap: 18px; align-items: center; }
.sub-btn { background: var(--rose) !important; color: #fff !important; padding: 6px 16px; font-size: 10px; font-weight: 700; letter-spacing: .15em; transition: background .2s; cursor: pointer; border: none; }
.sub-btn:hover { background: var(--terracotta) !important; }

/* ============================================================
   HOME HEADER (centered logo)
   ============================================================ */
.site-header { text-align: center; padding: 28px 40px 20px; border-bottom: 2px solid var(--charcoal); }
.eyebrow { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 10px; }
.site-logo { font-family: 'Playfair Display', serif; font-size: clamp(44px, 7vw, 86px); font-weight: 900; letter-spacing: -.02em; line-height: 1; color: var(--charcoal); }
.site-logo em { font-style: italic; color: var(--rose); }
.tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; color: var(--warm-gray); margin-top: 8px; letter-spacing: .06em; }

/* ============================================================
   NAV — home (centered) and article (with inline logo)
   ============================================================ */
.nav-wrap { background: var(--white); border-bottom: 1px solid var(--light-gray); position: sticky; top: 0; z-index: 200; }
/* Home centered nav */
.nav-wrap nav { display: flex; justify-content: center; overflow-x: auto; scrollbar-width: none; }
.nav-wrap nav::-webkit-scrollbar { display: none; }
.nav-wrap nav a { font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; padding: 15px 17px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color .2s, border-color .2s; color: var(--charcoal); flex-shrink: 0; display: inline-block; }
.nav-wrap nav a:hover { color: var(--rose); }
.nav-wrap nav a.active, .nav-wrap nav a[aria-current="page"], .nav-wrap nav a.current-menu-item { color: var(--rose); border-bottom-color: var(--rose); }
/* Article nav (with logo) */
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; letter-spacing: -.02em; padding: 14px 0; color: var(--charcoal); }
.nav-logo em { font-style: italic; color: var(--rose); }
.nav-inner nav { justify-content: flex-start; }
.nav-inner nav a { padding: 18px 14px; color: var(--warm-gray); }
.nav-sub { background: var(--rose); color: #fff; padding: 8px 16px; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; margin-left: 16px; transition: background .2s; flex-shrink: 0; cursor: pointer; border: none; }
.nav-sub:hover { background: var(--terracotta); color: #fff; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { max-width: 1280px; margin: 0 auto; padding: 16px 40px; display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--warm-gray); }
.breadcrumb a { color: var(--warm-gray); transition: color .2s; }
.breadcrumb a:hover { color: var(--rose); }
.bc-sep { opacity: .4; }

/* ============================================================
   HERO GRID (home)
   ============================================================ */
.hero-grid { display: grid; grid-template-columns: 1.55fr 1fr; grid-template-rows: 330px 270px; gap: 2px; background: var(--light-gray); max-width: 1280px; margin: 0 auto; }
.hero-main { grid-column: 1; grid-row: 1 / 3; position: relative; overflow: hidden; cursor: pointer; display: block; }
.hero-grid > .hero-side:nth-child(2) { grid-column: 2; grid-row: 1; }
.hero-grid > .hero-side:nth-child(3) { grid-column: 2; grid-row: 2; }
.hero-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.hero-main:hover img { transform: scale(1.04); }
.h-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(20,16,14,.92)); padding: 60px 34px 30px; color: #fff; }
.h-tag { display: inline-block; background: var(--rose); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 12px; }
.h-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.5vw, 36px); font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.h-title em { font-style: italic; }
.h-meta { font-size: 12px; opacity: .7; display: flex; gap: 14px; flex-wrap: wrap; }

/* Side cards */
.hero-side { background: var(--white); display: flex; flex-direction: column; cursor: pointer; transition: background .2s; overflow: hidden; }
.hero-side:hover { background: var(--cream); }
.hs-img-wrap { overflow: hidden; flex-shrink: 0; }
.hs-img-wrap img { width: 100%; height: 180px; object-fit: cover; transition: transform .5s; }
.hero-side:hover .hs-img-wrap img { transform: scale(1.05); }
.hs-body { padding: 16px 20px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hs-tag { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); }
.hs-title { font-family: 'Playfair Display', serif; font-size: clamp(15px, 1.3vw, 19px); font-weight: 700; line-height: 1.3; color: var(--charcoal); }
.hs-excerpt { font-size: 12.5px; color: var(--warm-gray); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hs-meta { font-size: 11px; color: var(--warm-gray); margin-top: auto; padding-top: 4px; }

/* ============================================================
   TRENDING BAR
   ============================================================ */
.trending { background: var(--rose); color: #fff; padding: 13px 40px; display: flex; align-items: center; gap: 18px; overflow: hidden; }
.tr-label { font-size: 9px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; background: #fff; color: var(--rose); padding: 4px 10px; flex-shrink: 0; }
.tr-links { display: flex; gap: 0; overflow: hidden; }
.tr-links a { color: #fff; font-size: 12px; font-weight: 500; white-space: nowrap; opacity: .9; padding: 0 14px; border-right: 1px solid rgba(255,255,255,.3); transition: opacity .2s; }
.tr-links a:last-child { border-right: none; }
.tr-links a:hover { opacity: 1; text-decoration: underline; }

/* ============================================================
   CONTENT WRAP & SECTION
   ============================================================ */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 50px 0; border-bottom: 1px solid var(--light-gray); }
.sec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.sec-head h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; white-space: nowrap; }
.sec-line { flex: 1; height: 1px; background: var(--light-gray); }
.see-all { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); white-space: nowrap; transition: color .2s; }
.see-all:hover { color: var(--terracotta); }

/* ============================================================
   4-COLUMN ARTICLE CARDS
   ============================================================ */
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.acard { display: block; color: inherit; cursor: pointer; }
.acard-img { overflow: hidden; margin-bottom: 14px; position: relative; }
.acard-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s; }
.acard:hover .acard-img img { transform: scale(1.05); }
.acard-img::after { content: 'Read →'; position: absolute; inset: 0; background: rgba(196,97,74,0); display: flex; align-items: flex-end; padding: 12px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; opacity: 0; transition: opacity .3s, background .3s; }
.acard:hover .acard-img::after { opacity: 1; background: rgba(196,97,74,.32); }
.acard-tag { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-bottom: 7px; }
.acard-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--charcoal); margin-bottom: 8px; transition: color .2s; }
.acard:hover .acard-title { color: var(--rose); }
.acard-exc { font-size: 13px; color: var(--warm-gray); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.acard-meta { font-size: 11px; color: var(--warm-gray); margin-top: 9px; }

/* ============================================================
   WELLNESS FEATURE STRIP
   ============================================================ */
.feature-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.feat-lead img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 18px; }
.feat-lead-tag { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.feat-lead-title { font-family: 'Playfair Display', serif; font-size: 26px; font-style: italic; font-weight: 700; line-height: 1.2; margin-bottom: 12px; color: var(--charcoal); }
.feat-lead-exc { font-size: 14px; color: var(--warm-gray); line-height: 1.65; }
.feat-col { display: flex; flex-direction: column; border-left: 1px solid var(--light-gray); padding-left: 30px; }
.fsitem { display: grid; grid-template-columns: 68px 1fr; gap: 11px; padding: 15px 0; border-bottom: 1px solid var(--light-gray); cursor: pointer; color: inherit; text-decoration: none; }
.fsitem:first-child { padding-top: 0; }
.fsitem:last-child { border-bottom: none; }
.fsitem img { width: 68px; height: 50px; object-fit: cover; flex-shrink: 0; }
.fsitem:hover .fstitle { color: var(--rose); }
.fstag { font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: 3px; }
.fstitle { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; line-height: 1.3; color: var(--charcoal); margin-bottom: 3px; transition: color .2s; }
.fsmeta { font-size: 10px; color: var(--warm-gray); }

/* ============================================================
   NEWSLETTER BANNER
   ============================================================ */
.nl-banner { background: var(--charcoal); color: var(--cream); padding: 64px 40px; text-align: center; position: relative; overflow: hidden; }
.nl-banner::before { content: 'WD'; position: absolute; font-family: 'Playfair Display', serif; font-size: min(280px, 28vw); font-weight: 900; color: rgba(255,255,255,.03); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; white-space: nowrap; user-select: none; }
.nl-banner h3 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 50px); font-weight: 700; margin-bottom: 12px; position: relative; }
.nl-banner h3 em { font-style: italic; color: var(--blush); }
.nl-banner p { font-size: 15px; color: rgba(250,247,242,.6); margin: 0 auto 30px; max-width: 440px; position: relative; }
.nl-form { display: flex; max-width: 440px; margin: 0 auto; position: relative; }
.nl-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.nl-form input { flex: 1; padding: 13px 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color .2s; min-width: 0; }
.nl-form input:focus { border-color: var(--blush); }
.nl-form input::placeholder { color: rgba(255,255,255,.38); }
.nl-form button { padding: 13px 24px; background: var(--rose); color: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; transition: background .2s; flex-shrink: 0; }
.nl-form button:hover { background: var(--terracotta); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--charcoal); color: var(--cream); padding: 56px 40px 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; max-width: 1280px; margin: 0 auto 36px; }
.fbrand .flogo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; margin-bottom: 12px; }
.fbrand .flogo em { font-style: italic; color: var(--blush); }
.fbrand p { font-size: 13px; color: rgba(250,247,242,.5); line-height: 1.7; max-width: 240px; margin-bottom: 18px; }
.socials { display: flex; gap: 8px; }
.socials a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; transition: all .2s; }
.socials a:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.fcol h4 { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--blush); margin-bottom: 16px; }
.fcol ul { list-style: none; }
.fcol li { margin-bottom: 9px; }
.fcol a { color: rgba(250,247,242,.55); font-size: 13px; transition: color .2s; }
.fcol a:hover { color: var(--cream); }
.foot-bot { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; font-size: 11px; color: rgba(250,247,242,.35); flex-wrap: wrap; gap: 8px; }

/* ============================================================
   ARTICLE HEADER
   ============================================================ */
.art-header { max-width: 820px; margin: 0 auto; padding: 32px 40px 0; text-align: center; }
.art-cat { display: inline-block; background: var(--rose); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; padding: 5px 12px; margin-bottom: 20px; }
.art-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.5vw, 54px); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.art-title em { font-style: italic; color: var(--rose); }
.art-deck { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px, 2vw, 22px); color: var(--warm-gray); line-height: 1.55; margin-bottom: 28px; font-style: italic; }

/* ============================================================
   BYLINE BAR
   ============================================================ */
.byline-bar { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 18px 40px; border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray); margin-bottom: 0; flex-wrap: wrap; }
.byline-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-info { text-align: left; }
.author-name { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.author-role { font-size: 11px; color: var(--warm-gray); }
.byline-divider { width: 1px; height: 32px; background: var(--light-gray); }
.byline-meta { display: flex; gap: 20px; font-size: 12px; color: var(--warm-gray); flex-wrap: wrap; align-items: center; }
.byline-meta span { display: flex; align-items: center; gap: 5px; }
.share-row { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.share-label { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--warm-gray); }
.share-btn { width: 32px; height: 32px; border: 1px solid var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--warm-gray); transition: all .2s; cursor: pointer; background: transparent; }
.share-btn:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ============================================================
   HERO IMAGE (article)
   ============================================================ */
.hero-img-wrap { max-width: 1100px; margin: 0 auto; padding: 32px 40px; }
.hero-img-wrap img { width: 100%; max-height: 560px; object-fit: cover; }
.img-caption { font-size: 11px; color: var(--warm-gray); text-align: center; margin-top: 10px; font-style: italic; }

/* ============================================================
   BODY LAYOUT — article + sidebar
   ============================================================ */
.body-layout { max-width: 1280px; margin: 0 auto; padding: 0 40px 60px; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.art-body { font-family: 'DM Sans', sans-serif; font-size: 17px; line-height: 1.78; color: var(--charcoal); }
.art-body p { margin-bottom: 22px; }
.art-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; line-height: 1.25; margin: 38px 0 16px; color: var(--charcoal); }
.art-body h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; line-height: 1.3; margin: 30px 0 12px; color: var(--charcoal); }
.art-body strong { font-weight: 600; color: var(--charcoal); }
.art-body em { font-style: italic; }
.art-body a { color: var(--rose); border-bottom: 1px solid var(--blush); transition: border-color .2s; }
.art-body a:hover { border-color: var(--rose); }
.pullquote { border-left: 4px solid var(--rose); margin: 36px 0; padding: 20px 28px; background: var(--white); }
.pullquote p { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2vw, 24px); font-style: italic; font-weight: 400; line-height: 1.45; color: var(--charcoal); margin: 0; }

/* ============================================================
   TAGS & AUTHOR BIO (article)
   ============================================================ */
.art-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--light-gray); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tags-label { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--warm-gray); }
.tag-pill { font-size: 11px; color: var(--charcoal); background: var(--white); border: 1px solid var(--light-gray); padding: 5px 12px; transition: all .2s; cursor: pointer; }
.tag-pill:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.author-bio { margin-top: 40px; padding: 28px; background: var(--white); border: 1px solid var(--light-gray); display: grid; grid-template-columns: 72px 1fr; gap: 20px; align-items: start; }
.author-bio img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.bio-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.bio-role { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.bio-text { font-size: 13px; color: var(--warm-gray); line-height: 1.65; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {}
.sidebar-sticky { position: sticky; top: 76px; }
.sidebar-widget { margin-bottom: 36px; }
.widget-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--charcoal); display: flex; align-items: center; justify-content: space-between; }
.widget-title span { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); }
.rel-item { display: grid; grid-template-columns: 78px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--light-gray); cursor: pointer; color: inherit; text-decoration: none; }
.rel-item:first-child { padding-top: 0; }
.rel-item:last-child { border-bottom: none; }
.rel-img { overflow: hidden; }
.rel-img img { width: 78px; height: 58px; object-fit: cover; transition: transform .4s; }
.rel-item:hover .rel-img img { transform: scale(1.07); }
.rel-tag { font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: 3px; }
.rel-title { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; line-height: 1.3; color: var(--charcoal); transition: color .2s; }
.rel-item:hover .rel-title { color: var(--rose); }
.nl-widget { background: var(--charcoal); padding: 24px; text-align: center; }
.nl-widget h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.nl-widget h4 em { font-style: italic; color: var(--blush); }
.nl-widget p { font-size: 12px; color: rgba(250,247,242,.55); line-height: 1.6; margin-bottom: 16px; }
.nl-widget input { width: 100%; padding: 10px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none; margin-bottom: 8px; transition: border-color .2s; }
.nl-widget input:focus { border-color: var(--blush); }
.nl-widget input::placeholder { color: rgba(255,255,255,.35); }
.nl-widget button { width: 100%; padding: 11px; background: var(--rose); color: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; transition: background .2s; }
.nl-widget button:hover { background: var(--terracotta); }
.pop-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.pop-tag { font-size: 11px; color: var(--warm-gray); border: 1px solid var(--light-gray); padding: 5px 11px; cursor: pointer; transition: all .2s; }
.pop-tag:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ============================================================
   RELATED ARTICLES (bottom of single)
   ============================================================ */
.related-section { background: var(--white); border-top: 1px solid var(--light-gray); padding: 52px 40px; }
.related-inner { max-width: 1280px; margin: 0 auto; }
.related-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.related-head h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; white-space: nowrap; }
.rel-line { flex: 1; height: 1px; background: var(--light-gray); }
.three-rel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rcard { display: block; color: inherit; cursor: pointer; }
.rcard-img { overflow: hidden; margin-bottom: 14px; }
.rcard-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .45s; }
.rcard:hover .rcard-img img { transform: scale(1.05); }
.rcard-tag { font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-bottom: 7px; }
.rcard-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--charcoal); margin-bottom: 8px; transition: color .2s; }
.rcard:hover .rcard-title { color: var(--rose); }
.rcard-meta { font-size: 11px; color: var(--warm-gray); }

/* ============================================================
   CATEGORY ARCHIVE
   ============================================================ */
.cat-header { max-width: 1280px; margin: 0 auto; padding: 32px 40px 24px; border-bottom: 1px solid var(--light-gray); }
.cat-kicker { font-size: 9px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.cat-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--charcoal); margin-bottom: 8px; }
.cat-desc { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--warm-gray); font-style: italic; }
.cat-grid { max-width: 1280px; margin: 0 auto; padding: 40px 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.cat-pagination { max-width: 1280px; margin: 0 auto; padding: 0 40px 48px; display: flex; gap: 8px; }
.cat-pagination .page-numbers { font-size: 13px; color: var(--warm-gray); padding: 6px 12px; border: 1px solid var(--light-gray); transition: all .2s; }
.cat-pagination .page-numbers.current, .cat-pagination .page-numbers:hover { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feat-lead { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .body-layout { grid-template-columns: 1fr; gap: 0; }
  .sidebar-sticky { position: static; }
  .sidebar { border-top: 1px solid var(--light-gray); padding-top: 40px; margin-top: 40px; }
  .three-rel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar { padding: 8px 16px; }
  .topbar-date { display: none; }
  .site-header { padding: 20px 16px 16px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-main { grid-row: auto; height: 300px; }
  .hero-main img { height: 300px; }
  .hero-side { flex-direction: row; height: 110px; }
  .hs-img-wrap { flex-shrink: 0; width: 130px; }
  .hs-img-wrap img { width: 130px; height: 110px; }
  .hs-excerpt { display: none; }
  .hs-meta { display: none; }
  .trending { padding: 10px 16px; gap: 12px; }
  .wrap { padding: 0 16px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feat-lead { grid-column: auto; }
  .feat-col { border-left: none; padding-left: 0; border-top: 1px solid var(--light-gray); padding-top: 16px; }
  .four-col { grid-template-columns: 1fr; gap: 20px; }
  .nl-banner { padding: 44px 16px; }
  .nl-form { flex-direction: column; gap: 8px; }
  .nl-form input, .nl-form button { width: 100%; }
  footer { padding: 36px 16px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .fbrand { grid-column: span 2; }
  .foot-bot { flex-direction: column; text-align: center; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 18px; }
  .nav-inner nav a { padding: 14px 12px; font-size: 10px; }
  .nav-sub { display: none; }
  .breadcrumb { padding: 12px 16px; }
  .art-header { padding: 20px 16px 0; }
  .hero-img-wrap { padding: 20px 16px; }
  .body-layout { padding: 0 16px 40px; }
  .byline-bar { padding: 14px 16px; gap: 12px; }
  .share-row { margin-left: 0; width: 100%; }
  .author-bio { grid-template-columns: 56px 1fr; }
  .author-bio img { width: 56px; height: 56px; }
  .related-section { padding: 36px 16px; }
  .three-rel { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; padding: 24px 16px; }
  .cat-header { padding: 24px 16px 16px; }
  .cat-pagination { padding: 0 16px 32px; }
}
@media (max-width: 480px) {
  .hero-side { flex-direction: column; height: auto; }
  .hs-img-wrap { width: 100%; }
  .hs-img-wrap img { width: 100%; height: 170px; }
  .hs-excerpt { display: block; }
}
