/* ============================================================
   FLAVOR HEARTH RECIPES - World-Class Food Blog Theme
   Inspired by: Pinch of Yum, Half Baked Harvest, NYT Cooking
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg:            #FAFAF8;
  --surface:       #FFFFFF;
  --surface-tint:  #F5F3EF;
  --text:          #1A1A18;
  --text-2:        #5C5852;
  --text-3:        #9B958E;
  --border:        #E8E2DA;
  --border-light:  #F0EBE3;
  --green:         #1E4D34;
  --green-dark:    #132E1F;
  --green-light:   #EBF4EE;
  --terra:         #BF4E25;
  --terra-soft:    #FAF0EB;
  --gold:          #E8A020;
  --w-full: 1240px;
  --r-xs: 6px; --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px;
  --sh-xs: 0 1px 4px rgba(0,0,0,.05);
  --sh-sm: 0 2px 12px rgba(0,0,0,.06);
  --sh-md: 0 6px 24px rgba(0,0,0,.09);
  --sh-lg: 0 16px 48px rgba(0,0,0,.13);
  --ease: cubic-bezier(.4,0,.2,1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 700; line-height: 1.2;
  color: var(--text); letter-spacing: -.01em;
}
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; height: auto; display: block; }

/* --- LAYOUT HELPERS --- */
.wrap    { max-width: var(--w-full); margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
  background-color: #132E1F;
  background: var(--green-dark);
  color: #E0EFE5;
  font-size: 12.5px; font-weight: 500;
  text-align: center; padding: 8px 16px; letter-spacing: .01em;
}
.top-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.top-bar strong { color: #fff; }

/* --- SITE HEADER — sticky frosted glass --- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-xs);
}
body.admin-bar .site-header { top: 32px; }

.header-inner {
  display: flex; align-items: center; gap: 20px; padding: 14px 0;
}

.brand-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo-flame {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--terra) 0%, #E86830 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(191,78,37,.3);
}
.logo-flame svg { fill: #fff; width: 22px; height: 22px; }
.brand-text-wrap { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.1; letter-spacing: -.02em;
}
.brand-tagline { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--terra); }

.header-search { flex: 1; max-width: 380px; position: relative; }
.header-search input {
  width: 100%; padding: 9px 16px 9px 40px;
  background: var(--surface-tint);
  border: 1.5px solid transparent; border-radius: 999px;
  font-size: 13.5px; font-family: var(--font-sans); color: var(--text); outline: none;
  transition: all .2s var(--ease);
}
.header-search input::placeholder { color: var(--text-3); }
.header-search input:focus { background: #fff; border-color: var(--green); box-shadow: 0 0 0 4px rgba(30,77,52,.1); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-3); pointer-events: none; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; list-style: none; gap: 4px; }
.main-nav a {
  font-size: 13.5px; font-weight: 600; color: var(--text);
  padding: 7px 12px; border-radius: var(--r-xs); transition: all .18s var(--ease);
}
.main-nav a:hover { background: var(--surface-tint); color: var(--terra); }
.main-nav .nav-cta { background: var(--green); color: #fff !important; border-radius: 999px; padding: 8px 18px; }
.main-nav .nav-cta:hover { background: var(--green-dark); }

/* === HERO - FULL-BLEED CINEMATIC === */
.hero-cinematic {
  position: relative; width: 100%;
  height: 86vh; min-height: 520px; max-height: 780px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0; transform: scale(1.03); transition: transform 8s ease;
}
.hero-cinematic:hover .hero-bg-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,18,16,.08) 0%,
    rgba(15,18,16,.12) 30%,
    rgba(15,18,16,.60) 68%,
    rgba(15,18,16,.92) 100%);
  z-index: 1;
}
.hero-content-wrap { position: relative; z-index: 2; width: 100%; padding-bottom: 56px; }
.hero-inner {
  max-width: var(--w-full); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto; align-items: flex-end; gap: 32px;
}
.hero-text { max-width: 680px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(191,78,37,.9); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.hero-label .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.6); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-title a { color: #fff; }
.hero-title a:hover { color: var(--gold); }
.hero-meta-bar {
  display: flex; align-items: center; gap: 20px; margin-bottom: 24px;
  color: rgba(255,255,255,.82); font-size: 13.5px; flex-wrap: wrap;
}
.hero-stars { color: var(--gold); letter-spacing: 2px; }
.hero-meta-sep { opacity: .35; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-md);
  padding: 20px 22px; min-width: 150px; text-align: center;
}
.hero-stat-item { padding: 10px 0; }
.hero-stat-item + .hero-stat-item { border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-val { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-top: 4px; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; border-radius: 999px;
  padding: 12px 26px; border: none; cursor: pointer;
  transition: all .22s var(--ease); font-family: var(--font-sans); white-space: nowrap;
}
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 4px 18px rgba(191,78,37,.35); }
.btn-primary:hover { background: #A33C1A; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(191,78,37,.45); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.9); color: #fff; }
.btn-outline-green { background: transparent; border: 2px solid var(--green); color: var(--green); padding: 10px 22px; }
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* --- TRUST / SOCIAL PROOF STRIP --- */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--border); }
.trust-strip-inner { display: flex; align-items: stretch; overflow: hidden; }
.trust-item {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 16px; border-right: 1px solid var(--border); transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--surface-tint); }
.trust-icon {
  width: 38px; height: 38px; background: var(--green-light); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 19px;
}
.trust-label { display: flex; flex-direction: column; text-align: left; }
.trust-val { font-size: 17px; font-weight: 800; color: var(--text); font-family: var(--font-serif); line-height: 1; }
.trust-desc { font-size: 11.5px; color: var(--text-2); font-weight: 500; margin-top: 2px; }

/* --- FILTER PILLS --- */
.filter-nav { padding: 28px 0 0; }
.filter-pills { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text-2);
  transition: all .18s var(--ease); cursor: pointer;
}
.pill:hover, .pill.is-active {
  background: var(--green); border-color: var(--green); color: #fff;
  box-shadow: 0 4px 12px rgba(30,77,52,.25); transform: translateY(-1px);
}

/* --- SECTION HEADING PATTERN --- */
.sh-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.sh-eyebrow { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--terra); margin-bottom: 4px; }
.sh-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 10px; }
.sh-line { display: block; width: 40px; height: 3px; background: var(--terra); border-radius: 2px; margin-top: 10px; }
.sh-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--green);
  white-space: nowrap; flex-shrink: 0; padding: 8px 16px;
  border: 1.5px solid var(--border); border-radius: 999px; transition: all .2s var(--ease);
}
.sh-link:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* === CATEGORY SILO SECTIONS === */
.category-silo-section { padding: 48px 0; }

/* --- MAGAZINE HERO GRID (1st silo) --- */
.magazine-grid {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: 24px; align-items: stretch;
}
.magazine-feature {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface-tint); box-shadow: var(--sh-md);
  min-height: 480px; display: flex; flex-direction: column;
}
.magazine-feature .thumb-wrap { position: relative; flex: 1; overflow: hidden; }
.magazine-feature .thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.magazine-feature:hover .thumb-wrap img { transform: scale(1.04); }
.magazine-feature .thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,18,16,.85) 0%, rgba(15,18,16,.15) 55%, transparent 100%);
}
.magazine-feature .thumb-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 26px; }
.mag-cat-tag {
  display: inline-block; background: var(--terra); color: #fff;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.mag-feature-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: #fff; line-height: 1.25; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.mag-feature-title a { color: #fff; }
.mag-feature-title a:hover { color: var(--gold); }
.mag-feature-meta { display: flex; align-items: center; gap: 14px; margin-top: 10px; font-size: 12.5px; color: rgba(255,255,255,.78); }
.mag-stars { color: var(--gold); }

.magazine-stack { display: flex; flex-direction: column; gap: 24px; }
.mag-side-card {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: row; align-items: stretch;
  box-shadow: var(--sh-xs); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  flex: 1;
}
.mag-side-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.mag-side-thumb { width: 130px; flex-shrink: 0; overflow: hidden; }
.mag-side-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.mag-side-card:hover .mag-side-thumb img { transform: scale(1.06); }
.mag-side-body { padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.mag-side-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--terra); }
.mag-side-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.mag-side-title a { color: inherit; }
.mag-side-title a:hover { color: var(--terra); }
.mag-side-meta { font-size: 12px; color: var(--text-3); display: flex; gap: 10px; margin-top: 4px; }

/* --- STANDARD RECIPE CARDS --- */
.recipes-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important; padding: 0 !important; width: 100% !important;
}
.recipe-card {
  background: var(--surface) !important;
  border-radius: var(--r-md) !important;
  overflow: hidden !important;
  display: flex !important; flex-direction: column !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: var(--sh-xs) !important;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease) !important;
  margin: 0 !important; width: 100% !important; position: relative;
}
.recipe-card:hover { transform: translateY(-5px) !important; box-shadow: var(--sh-md) !important; border-color: var(--border) !important; }

.card-thumbnail { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-tint); }
.card-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.recipe-card:hover .card-thumbnail img { transform: scale(1.06); }

.card-cat-tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(15,18,16,.75); backdrop-filter: blur(6px);
  color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 999px;
}
.card-tag { display: none; }
.card-save-btn {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; background: rgba(255,255,255,.88); backdrop-filter: blur(6px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-2); font-size: 14px; opacity: 0; transition: opacity .2s var(--ease); cursor: pointer;
}
.recipe-card:hover .card-save-btn { opacity: 1; }
.card-peek {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px;
  background: linear-gradient(to top, rgba(15,18,16,.88), transparent);
  color: #fff; font-size: 12.5px; line-height: 1.5;
  transform: translateY(100%); opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.recipe-card:hover .card-peek { transform: translateY(0); opacity: 1; }

.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.card-meta-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; font-size: 12px; color: var(--text-2); }
.card-rating { display: flex; align-items: center; gap: 4px; font-weight: 700; color: var(--text); }
.card-rating .star { color: var(--gold); font-size: 13px; }
.card-title { font-size: 17px; line-height: 1.35; margin: 0 0 10px; font-weight: 700; color: var(--text); }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--terra); }
.card-badges { margin-top: auto; display: flex; flex-wrap: wrap; gap: 5px; padding-top: 10px; border-top: 1px solid var(--border-light); }
.badge-pill { font-size: 10.5px; font-weight: 600; background: var(--surface-tint); color: var(--text-2); padding: 3px 9px; border-radius: var(--r-xs); border: 1px solid var(--border-light); }

/* --- TRENDING NOW (dark green band) --- */
.trending-section { background-color: #132E1F; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); padding: 48px 0; }
.trending-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.trending-badge { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 5px 14px; border-radius: 999px; }
.trending-title-text { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: #ffffff; }
.trending-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trending-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md); overflow: hidden;
  transition: transform .25s var(--ease), background .25s;
}
.trending-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.18); }
.trending-thumb { aspect-ratio: 16/10; overflow: hidden; }
.trending-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.trending-card:hover .trending-thumb img { transform: scale(1.06); }
.trending-body { padding: 14px 14px 16px; }
.trending-num { font-size: 11px; font-weight: 800; color: #E0EFE5; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.trending-name { font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
.trending-name a { color: #fff; }
.trending-name a:hover { color: var(--gold); }
.trending-meta { font-size: 11.5px; color: #D2DCD4; margin-top: 6px; display: flex; gap: 10px; }

/* --- EEAT AUTHORITY BLOCK --- */
.eeat-section { padding: 56px 0; }
.eeat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 48px 52px; display: grid; grid-template-columns: auto 1fr;
  gap: 44px; align-items: center; box-shadow: var(--sh-sm);
  position: relative; overflow: hidden;
}
.eeat-card::before { content: ''; position: absolute; top: 0; right: 0; width: 220px; height: 220px; background: radial-gradient(ellipse at top right, var(--green-light) 0%, transparent 70%); pointer-events: none; }
.eeat-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--green-light); border: 3px solid var(--green); display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.eeat-badge-row { margin-bottom: 10px; }
.eeat-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 5px 14px; border-radius: 999px; }
.eeat-heading { font-size: 28px; margin-bottom: 12px; color: var(--text); }
.eeat-text { font-size: 15px; color: var(--text-2); line-height: 1.7; max-width: 640px; margin-bottom: 24px; }
.eeat-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--border-light); }
.eeat-stat { display: flex; flex-direction: column; }
.eeat-stat-val { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--green); line-height: 1; }
.eeat-stat-label { font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }
.eeat-cta { margin-left: auto; }

/* --- NEWSLETTER SECTION --- */
.newsletter-section { padding: 0 0 64px; }
.newsletter-card {
  background-color: #132E1F;
  background: linear-gradient(135deg, #1E4D34 0%, #132E1F 40%, #0F2218 100%);
  border-radius: var(--r-xl); padding: 60px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  overflow: hidden; position: relative;
}
.newsletter-card::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%); pointer-events: none; }
.newsletter-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); color: #E0EFE5; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.newsletter-h { font-size: clamp(22px, 3vw, 34px); color: #fff; margin-bottom: 14px; }
.newsletter-sub { font-size: 15px; color: #D2E8D8; line-height: 1.65; }
.newsletter-perks { list-style: none; padding: 0; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.newsletter-perks li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #E0EFE5; }
.perk-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: #FFFFFF; font-size: 11px; flex-shrink: 0; }
.newsletter-form-side { display: flex; flex-direction: column; justify-content: center; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input[type=email] { padding: 15px 20px; border-radius: var(--r-sm); border: 1.5px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: #fff; font-size: 15px; font-family: var(--font-sans); outline: none; transition: all .2s; }
.newsletter-form input[type=email]::placeholder { color: #D2E8D8; opacity: 0.85; }
.newsletter-form input[type=email]:focus { border-color: #fff; background: rgba(255,255,255,.18); }
.newsletter-form .btn-primary { justify-content: center; padding: 14px; font-size: 15px; border-radius: var(--r-sm); }
.newsletter-note { font-size: 12px; color: #D2E8D8; margin-top: 10px; text-align: center; }

/* --- SITE FOOTER --- */
.site-footer { background-color: #0F1411; background: #0F1411; color: #E2ECE4; padding: 60px 0 28px; border-top: 4px solid var(--terra); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 44px; }
.footer-brand-col .brand-name { color: #ffffff !important; font-size: 22px; margin-bottom: 12px; }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: #D2DCD4; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: var(--r-xs); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #E2ECE4; font-size: 15px; transition: all .2s; }
.social-btn:hover { background: var(--terra); border-color: var(--terra); color: #fff; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #ffffff; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: #D2DCD4; transition: color .2s; }
.footer-col a:hover { color: #ffffff; text-decoration: underline; }
.footer-newsletter-blurb { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-md); padding: 20px; }
.footer-nl-title { font-size: 15px; color: #ffffff; margin-bottom: 8px; }
.footer-nl-sub { font-size: 13px; color: #D2DCD4; margin-bottom: 14px; line-height: 1.55; }
.footer-nl-form { display: flex; gap: 8px; }
.footer-nl-form input { flex: 1; padding: 9px 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-xs); color: #ffffff; font-size: 13px; font-family: var(--font-sans); outline: none; }
.footer-nl-form input::placeholder { color: #D2DCD4; opacity: 0.85; }
.footer-nl-form button { background: var(--terra); color: #fff; border: none; border-radius: var(--r-xs); padding: 9px 16px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s; font-family: var(--font-sans); }
.footer-nl-form button:hover { background: #A33C1A; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12.5px; color: #C8D6CA; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: #D2DCD4; }
.footer-legal a:hover { color: #ffffff; text-decoration: underline; }
.footer-adsense-note { width: 100%; font-size: 11.5px; color: #A2B5A5; margin-top: 6px; }

/* --- PAGE & SINGLE POST TEMPLATES --- */
.page-wrap { max-width: 800px; margin: 60px auto; padding: 0 24px; }
.page-wrap h1 { font-size: 36px; margin-bottom: 8px; }
.page-date { font-size: 13px; color: var(--text-3); margin-bottom: 36px; display: block; }
.page-wrap h2 { font-size: 22px; margin: 32px 0 12px; }
.page-wrap p { margin-bottom: 16px; color: var(--text-2); line-height: 1.75; }
.page-wrap ul { margin: 0 0 16px 24px; color: var(--text-2); }
.page-wrap ul li { margin-bottom: 6px; line-height: 1.7; }
.recipe-hero-banner { width: 100%; max-height: 520px; overflow: hidden; }
.recipe-hero-banner img { width: 100%; height: 520px; object-fit: cover; }

/* AdSense compliance */
.ad-slot-wrap { text-align: center; padding: 24px 0; }
.ad-slot-label { display: block; font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .trending-row { grid-template-columns: repeat(2, 1fr); }
  .magazine-grid { grid-template-columns: 1fr; }
  .magazine-feature { min-height: 380px; }
  .magazine-stack { flex-direction: row; }
}
@media (max-width: 960px) {
  .hero-cinematic { height: 70vh; min-height: 440px; }
  .hero-stats { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .eeat-card { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; gap: 24px; }
  .eeat-avatar { margin: 0 auto; }
  .eeat-cta { margin: 0 auto; }
  .newsletter-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 700px) {
  .header-inner { flex-wrap: wrap; }
  .header-search { order: 3; max-width: 100%; flex: 0 0 100%; }
  .main-nav { order: 4; width: 100%; overflow-x: auto; margin-left: 0; }
  .main-nav ul { flex-wrap: nowrap; }
  .hero-cinematic { height: 60vh; min-height: 380px; }
  .hero-title { font-size: 26px; }
  .recipes-grid { grid-template-columns: 1fr !important; }
  .trending-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sh-row { flex-direction: column; align-items: flex-start; }
  .magazine-stack { flex-direction: column; }
  .trust-item { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .trending-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-nl-form { flex-direction: column; }
}



/* ============================================================
   ADDITIONS: Footer, Single Post, Archive, Page Templates
   Appended to main.css
   ============================================================ */

/* ==============================
   FOOTER IMPROVEMENTS
   ============================== */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding: 56px 0 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 14px;
}
.footer-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  color: #FFFFFF !important;
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-xs);
}
.footer-divider-wrap { padding: 0; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); }

/* ==============================
   BREADCRUMB
   ============================== */
.breadcrumb-nav { padding: 14px 0; }
.breadcrumb-inner { }
.breadcrumb-list {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
  list-style: none; font-size: 13px; color: var(--text-3);
}
.breadcrumb-list a { color: var(--text-2); font-weight: 500; }
.breadcrumb-list a:hover { color: var(--terra); }
.bc-sep { color: var(--text-3); margin: 0 2px; }
.bc-current { color: var(--text); font-weight: 600; }
.breadcrumb-light .breadcrumb-list { color: rgba(255,255,255,.6); }
.breadcrumb-light a { color: rgba(255,255,255,.75); }
.breadcrumb-light .bc-sep { color: rgba(255,255,255,.35); }
.breadcrumb-light .bc-current { color: #fff; }

/* ==============================
   SINGLE POST LAYOUT
   ============================== */
.single-hero-wrap {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
  position: relative;
}
.single-hero-img-wrap { position: relative; }
.single-hero-img {
  width: 100%; height: 560px; object-fit: cover;
  display: block;
}
.single-hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

/* Article + Sidebar grid */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding-top: 36px;
  padding-bottom: 60px;
  align-items: start;
}
.single-article { min-width: 0; }

/* Article header */
.single-cat-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.single-cat-tag {
  display: inline-block; background: var(--terra); color: #fff;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 999px;
}
.single-cuisine-tag {
  display: inline-block; background: var(--green-light); color: var(--green);
  font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.single-diet-tag {
  display: inline-block; background: #FDF6E8; color: #B8860B;
  font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.single-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 20px;
}
.single-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.single-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; font-family: var(--font-serif);
  flex-shrink: 0;
}
.meta-by { display: block; font-size: 13.5px; color: var(--text); font-weight: 500; }
.meta-date { display: block; font-size: 12px; color: var(--text-3); margin-top: 1px; }

.single-rating {
  display: flex; align-items: center; gap: 6px;
  background: var(--gold-pale); padding: 8px 14px; border-radius: var(--r-sm);
  border: 1px solid rgba(232,160,32,.2);
}
.rating-stars { color: var(--gold); letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--text-3); }

/* Jump to Recipe + Quick Stats bar */
.single-actions {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 32px; padding: 18px 20px;
  background: var(--surface-tint); border-radius: var(--r-md);
  border: 1px solid var(--border-light);
}
.single-jump-btn { padding: 10px 22px; font-size: 14px; }
.single-print-btn { padding: 10px 18px; font-size: 14px; }
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--border); border-radius: 999px;
  font-family: var(--font-sans); font-weight: 700; cursor: pointer;
  transition: all .2s var(--ease);
}
.btn-ghost-dark:hover { background: var(--surface-tint); border-color: var(--text-2); }
.single-quick-stats {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  color: var(--text-2); margin-left: auto; flex-wrap: wrap;
}
.stat-sep { color: var(--border); }

/* Entry content */
.single-body {
  font-size: 17px; line-height: 1.82; color: var(--text-2);
  margin-bottom: 40px;
}
.single-body h2 { font-size: 26px; margin: 36px 0 14px; color: var(--text); }
.single-body h3 { font-size: 21px; margin: 28px 0 12px; color: var(--text); }
.single-body p { margin-bottom: 18px; }
.single-body ul, .single-body ol { margin: 0 0 18px 22px; }
.single-body li { margin-bottom: 6px; }
.single-body strong { color: var(--text); font-weight: 700; }
.single-body a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.single-body a:hover { color: var(--terra); }
.single-body blockquote {
  margin: 24px 0; padding: 20px 24px;
  border-left: 4px solid var(--terra);
  background: var(--terra-soft); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic; font-size: 16px; color: var(--text);
}

/* ==============================
   RECIPE CARD FULL (on single post)
   ============================== */
.recipe-card-full {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 40px 0;
  box-shadow: var(--sh-md);
}
.rc-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 28px 32px;
  color: #fff;
}
.rc-header-top {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px;
}
.rc-icon { font-size: 36px; flex-shrink: 0; }
.rc-label {
  display: block; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.6); margin-bottom: 4px;
}
.rc-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.rc-desc { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0; }
.rc-rating-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.rc-stars { display: flex; gap: 3px; }
.rc-star { font-size: 18px; color: rgba(255,255,255,.25); }
.rc-star.filled { color: var(--gold); }
.rc-rating-val { font-weight: 800; font-size: 16px; color: #fff; }
.rc-review-cnt { font-size: 13px; color: rgba(255,255,255,.6); }

/* Quick stats grid in recipe card */
.rc-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-bottom: 1px solid var(--border-light);
}
.rc-stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 16px; text-align: center;
  border-right: 1px solid var(--border-light);
}
.rc-stat:last-child, .rc-stat:nth-child(3n) { border-right: none; }
.rc-stat-icon { font-size: 20px; margin-bottom: 4px; }
.rc-stat-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-3); margin-bottom: 4px;
}
.rc-stat-val { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--green); }

/* Tags row */
.rc-tags-row {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 28px;
  border-bottom: 1px solid var(--border-light); background: var(--surface-tint);
}
.rc-tag {
  display: inline-block; background: var(--surface); color: var(--text-2);
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: var(--r-xs); border: 1px solid var(--border);
}

/* Divider */
.rc-divider { border: none; border-top: 2px dashed var(--border-light); margin: 0 28px; }

/* Sections (ingredients / instructions) */
.rc-section { padding: 28px 32px; }
.rc-section-title {
  font-size: 20px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 2px solid var(--border-light);
}
.rc-section-icon { font-size: 20px; }

/* Ingredients list */
.rc-ingredients { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.rc-ing-group {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--terra); margin: 12px 0 4px; list-style: none;
}
.rc-ing-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-2); padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
  list-style: none;
}
.rc-ing-item:last-child { border-bottom: none; }
.rc-ing-check { font-size: 15px; color: var(--border); flex-shrink: 0; margin-top: 2px; }

/* Instructions list */
.rc-instructions { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.rc-ins-group {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--terra); margin: 8px 0 0; list-style: none;
}
.rc-ins-step {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; color: var(--text-2); line-height: 1.7;
  list-style: none;
}
.rc-step-num {
  min-width: 32px; height: 32px;
  background: var(--green); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0; margin-top: 3px;
}

/* Card Footer */
.rc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; background: var(--surface-tint);
  border-top: 1px solid var(--border-light); flex-wrap: wrap; gap: 12px;
}
.rc-print-btn { font-size: 13px; padding: 9px 20px; }
.rc-share { display: flex; align-items: center; gap: 10px; }
.rc-share-label { font-size: 12px; color: var(--text-3); font-weight: 600; }
.rc-share-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--border);
  font-size: 12.5px; font-weight: 700; color: var(--text-2);
  transition: all .2s var(--ease);
}
.rc-share-btn:hover { background: var(--terra); border-color: var(--terra); color: #fff; }

/* ==============================
   SIDEBAR
   ============================== */
.single-sidebar, .page-sidebar {
  position: sticky; top: calc(70px + 16px);
  display: flex; flex-direction: column; gap: 20px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--sh-xs);
}
.sidebar-card-title {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.toc-list a { display: block; padding: 7px 10px; font-size: 13.5px; font-weight: 600; color: var(--text-2); border-radius: var(--r-xs); transition: all .18s; }
.toc-list a:hover { background: var(--surface-tint); color: var(--green); }
.sidebar-stats-list { list-style: none; padding: 0; margin: 0; }
.sidebar-stats-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 13.5px; }
.sidebar-stats-list li:last-child { border-bottom: none; }
.sidebar-stats-list span { color: var(--text-3); font-weight: 500; }
.sidebar-stats-list strong { color: var(--text); font-weight: 700; }

.sidebar-newsletter { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-color: transparent; }
.sidebar-nl-emoji { font-size: 28px; margin-bottom: 8px; }
.sidebar-nl-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; font-family: var(--font-serif); }
.sidebar-nl-sub { font-size: 13px; color: #8DB09A; line-height: 1.55; margin-bottom: 14px; }
.sidebar-nl-form { display: flex; flex-direction: column; gap: 8px; }
.sidebar-nl-form input { padding: 11px 14px; border-radius: var(--r-xs); border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: 14px; font-family: var(--font-sans); outline: none; }
.sidebar-nl-form input::placeholder { color: rgba(255,255,255,.4); }
.sidebar-nl-form input:focus { border-color: rgba(255,255,255,.5); }

.related-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.related-item { }
.related-link { display: flex; align-items: center; gap: 10px; padding: 6px; border-radius: var(--r-xs); transition: background .18s; }
.related-link:hover { background: var(--surface-tint); }
.related-link img { width: 56px; height: 56px; border-radius: var(--r-xs); object-fit: cover; flex-shrink: 0; }
.related-link span { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; }
.related-link:hover span { color: var(--terra); }

/* ==============================
   TAXONOMY TAGS / AUTHOR BIO
   ============================== */
.single-taxonomy-row {
  display: flex; gap: 16px; flex-wrap: wrap; padding: 24px 0;
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
  margin: 32px 0; font-size: 13.5px;
}
.taxonomy-label { font-weight: 700; color: var(--text-3); margin-right: 4px; }
.single-tags a, .single-cats a {
  display: inline-block; background: var(--surface-tint); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: var(--r-xs); color: var(--text-2); font-size: 12.5px;
  margin: 2px; transition: all .18s;
}
.single-tags a:hover, .single-cats a:hover { background: var(--green); color: #fff; border-color: var(--green); }

.author-bio-box {
  display: flex; gap: 20px; padding: 28px;
  background: var(--surface-tint); border-radius: var(--r-lg);
  border: 1px solid var(--border); margin: 24px 0 40px;
}
.author-avatar-lg {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; font-family: var(--font-serif);
  flex-shrink: 0; border: 3px solid rgba(30,77,52,.3);
}
.author-bio-content { flex: 1; }
.author-bio-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--terra); display: block; margin-bottom: 4px; }
.author-bio-name { font-size: 18px; margin-bottom: 8px; }
.author-bio-text { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 14px; }

/* Related bottom grid */
.related-bottom-section { padding: 48px 0 64px; background: var(--surface-tint); border-top: 1px solid var(--border); }

/* ==============================
   CATEGORY ARCHIVE PAGES
   ============================== */
.archive-hero {
  position: relative; overflow: hidden; height: 380px;
  display: flex; align-items: flex-end;
}
.archive-hero-bg { position: absolute; inset: 0; }
.archive-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.archive-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,18,16,.3) 0%, rgba(15,18,16,.8) 100%);
}
.archive-hero-content { position: relative; z-index: 2; padding-bottom: 40px; }
.archive-hero-text { max-width: 680px; }
.archive-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--terra); background: rgba(191,78,37,.15);
  border: 1px solid rgba(191,78,37,.4); padding: 5px 14px; border-radius: 999px; margin-bottom: 12px;
}
.archive-title { font-size: clamp(28px, 4vw, 48px); color: #fff; margin-bottom: 10px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.archive-tagline { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.6; margin-bottom: 14px; }
.archive-count {
  display: inline-block; background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9);
  font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 999px;
}

/* Archive toolbar */
.archive-toolbar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.archive-toolbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.archive-result-count { font-size: 14px; color: var(--text-2); }
.archive-sort-pills { display: flex; gap: 8px; }

/* Archive grid (same as recipes-grid but 4 columns for archives) */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.archive-grid-section { padding: 40px 0; }

/* Pagination */
.archive-pagination { display: flex; justify-content: center; padding: 16px 0; }
.archive-pagination .page-numbers {
  display: inline-flex; list-style: none; gap: 6px; padding: 0; margin: 0; flex-wrap: wrap;
}
.page-numbers li { }
.page-numbers a,
.page-numbers span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-xs);
  font-size: 14px; font-weight: 600; color: var(--text-2);
  border: 1.5px solid var(--border); background: var(--surface);
  transition: all .18s var(--ease);
}
.page-numbers a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.page-numbers .current { background: var(--green); border-color: var(--green); color: #fff; }
.page-numbers .prev, .page-numbers .next { width: auto; padding: 0 16px; }

/* Empty state */
.archive-empty { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 64px; margin-bottom: 16px; }
.archive-empty h2 { font-size: 26px; margin-bottom: 10px; }
.archive-empty p { font-size: 15px; color: var(--text-2); margin-bottom: 24px; }

/* SEO Block */
.archive-seo-block {
  padding: 48px 0 56px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.archive-seo-inner { }
.archive-seo-title { font-size: 24px; margin-bottom: 16px; }
.archive-seo-text p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
.archive-seo-links {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; align-items: center;
}
.seo-links-label { font-size: 12px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.seo-internal-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface-tint); border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-2);
  transition: all .2s var(--ease);
}
.seo-internal-link:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ==============================
   PAGE TEMPLATE (legal / about / contact)
   ============================== */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 48px 0 44px;
}
.page-hero-inner { }
.page-hero-title { font-size: clamp(28px, 4vw, 42px); color: #fff; margin: 8px 0 12px; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 560px; margin: 0 0 16px; }
.page-hero-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.page-hero-badge {
  display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 999px;
}
.page-hero-date { font-size: 13px; color: rgba(255,255,255,.6); }

/* Page layout */
.page-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; padding-top: 40px; padding-bottom: 60px; align-items: start;
}
.page-article { min-width: 0; }

/* Legal notice box */
.legal-notice-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: #FDF6E8; border: 1px solid rgba(232,160,32,.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md); padding: 16px 20px;
  font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 28px;
}
.legal-notice-icon { font-size: 20px; flex-shrink: 0; }

/* About stats */
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-md); overflow: hidden; margin-bottom: 36px;
  border: 1px solid var(--border);
}
.about-stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px 16px; text-align: center; background: var(--surface);
}
.about-stat-val { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--green); line-height: 1; }
.about-stat-label { font-size: 11.5px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }

/* Page content typography */
.page-content { font-size: 16.5px; line-height: 1.8; color: var(--text-2); }
.page-content h2 { font-size: 24px; color: var(--text); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border-light); }
.page-content h3 { font-size: 19px; color: var(--text); margin: 28px 0 10px; }
.page-content p { margin-bottom: 18px; }
.page-content ul, .page-content ol { margin: 0 0 18px 24px; }
.page-content li { margin-bottom: 8px; }
.page-content strong { color: var(--text); font-weight: 700; }
.page-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--terra); }
.page-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 14.5px; }
.page-content th { background: var(--green); color: #fff; text-align: left; padding: 12px 14px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.page-content td { padding: 11px 14px; border-bottom: 1px solid var(--border-light); color: var(--text-2); }
.page-content tr:hover td { background: var(--surface-tint); }

/* Contact Form */
.contact-form-wrap { margin: 36px 0; padding: 32px; background: var(--surface-tint); border-radius: var(--r-xl); border: 1px solid var(--border); }
.contact-form-title { font-size: 22px; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.cf-field label span { color: var(--terra); }
.cf-field input,
.cf-field select,
.cf-field textarea {
  padding: 12px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--surface);
  font-size: 15px; font-family: var(--font-sans); color: var(--text);
  outline: none; transition: all .2s; resize: vertical;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(30,77,52,.1);
}
.cf-submit { font-size: 15px; padding: 14px 28px; border-radius: var(--r-sm); width: fit-content; }
.cf-privacy-note { font-size: 12.5px; color: var(--text-3); margin-top: 6px; }
.cf-privacy-note a { color: var(--green); }
.contact-success { background: var(--green-light); color: var(--green); font-weight: 700; padding: 16px 20px; border-radius: var(--r-md); font-size: 15px; }

/* Sidebar for pages */
.sidebar-trust-box { text-align: center; }
.trust-box-icon { font-size: 36px; margin-bottom: 10px; }
.sidebar-trust-stats { display: flex; justify-content: space-around; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-light); }
.sidebar-trust-stats div { display: flex; flex-direction: column; align-items: center; }
.sidebar-trust-stats strong { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--green); }
.sidebar-trust-stats span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-top: 2px; font-weight: 600; }
.sidebar-cat-links { list-style: none; padding: 0; margin: 0; }
.sidebar-cat-links li { border-bottom: 1px solid var(--border-light); }
.sidebar-cat-links li:last-child { border-bottom: none; }
.sidebar-cat-links a { display: block; padding: 9px 4px; font-size: 14px; font-weight: 600; color: var(--text-2); transition: color .18s; }
.sidebar-cat-links a:hover { color: var(--terra); }
.sidebar-legal-links .sidebar-cat-links a { font-size: 13.5px; }

/* Page post nav */
.page-post-nav { margin-top: 40px; }
.page-post-nav .nav-links { display: flex; justify-content: space-between; gap: 16px; }
.page-post-nav .nav-previous a, .page-post-nav .nav-next a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 18px; background: var(--surface-tint);
  border: 1px solid var(--border); border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; color: var(--text); transition: all .2s;
}
.page-post-nav .nav-previous a:hover, .page-post-nav .nav-next a:hover {
  background: var(--green); color: #fff; border-color: var(--green);
}
.page-post-nav .nav-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .7; font-weight: 600; }
.page-post-nav .nav-title { font-family: var(--font-serif); font-size: 16px; }

/* ==============================
   SCREEN READER ONLY
   ============================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==============================
   RESPONSIVE ADDITIONS
   ============================== */
@media (max-width: 1100px) {
  .single-layout { grid-template-columns: 1fr 280px; gap: 36px; }
  .page-layout { grid-template-columns: 1fr 260px; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rc-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; max-height: none; }
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .archive-hero { height: 300px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rc-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .single-hero-img { height: 280px; }
  .single-meta-row { flex-direction: column; align-items: flex-start; }
  .single-actions { flex-direction: column; align-items: flex-start; }
  .single-quick-stats { margin-left: 0; }
  .archive-hero { height: 260px; }
  .archive-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rc-footer { flex-direction: column; align-items: flex-start; }
  .cf-row { grid-template-columns: 1fr; }
  .author-bio-box { flex-direction: column; }
  .archive-toolbar-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .single-title { font-size: 26px; }
  .rc-header { padding: 20px; }
  .rc-section { padding: 20px; }
  .rc-footer { padding: 16px 20px; }
}

/* Extra Legal & Page Content Enhancements */
.page-intro-text {
  font-size: 18.5px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 24px;
}

.legal-info-box {
  background: var(--surface-tint);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 28px;
}

/* ==============================
   LUXURY ARCHIVE SEO CARD
   ============================== */
.archive-seo-section {
  padding: 56px 0 64px;
  background: var(--surface-tint);
  border-top: 1px solid var(--border);
}
.archive-seo-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}
.archive-seo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--terra) 100%);
}
.archive-seo-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.archive-seo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 999px;
}
.archive-seo-badge-sub {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}
.archive-seo-title {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.25;
}
.archive-seo-title span {
  color: var(--terra);
}
.archive-seo-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}
.archive-seo-col-main p {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.archive-seo-lead {
  font-size: 17px !important;
  color: var(--text) !important;
  font-weight: 500;
  line-height: 1.7 !important;
}
.archive-seo-col-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface-tint);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 22px;
}
.seo-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.seo-perk-icon {
  font-size: 20px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seo-perk-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.seo-perk-body strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
}
.seo-perk-body span {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.45;
}

/* Footer & Internal linking */
.archive-seo-footer {
  padding-top: 26px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.archive-seo-footer .seo-links-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}
.archive-seo-pills-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.seo-internal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all .2s var(--ease);
}
.seo-internal-pill:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30,77,52,.15);
}
.seo-internal-pill svg {
  opacity: .6;
  transition: transform .2s ease;
}
.seo-internal-pill:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .archive-seo-grid { grid-template-columns: 1fr; gap: 24px; }
  .archive-seo-card { padding: 32px 24px; }
  .archive-seo-footer { flex-direction: column; align-items: flex-start; }
}

/* ==============================
   RECIPE FAQ ACCORDION STYLES
   ============================== */
.recipe-faq-section {
  margin: 44px 0;
  padding: 36px 36px 40px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
  position: relative;
  overflow: hidden;
}
.recipe-faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terra) 0%, var(--green) 100%);
}
.faq-header-row {
  margin-bottom: 24px;
}
.faq-badge {
  display: inline-block;
  background: var(--terra-soft);
  color: var(--terra);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.faq-title {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 6px;
}
.faq-subtitle {
  font-size: 14.5px;
  color: var(--text-2);
  margin: 0;
}

/* Accordion details */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface-tint);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .2s var(--ease);
}
.faq-item[open] {
  background: var(--surface);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(30,77,52,.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question:hover {
  color: var(--green);
}
.faq-icon {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-3);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background-color .2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px dashed var(--border-light);
  margin-top: 2px;
  padding-top: 14px;
}
.faq-answer p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0;
}

@media (max-width: 700px) {
  .recipe-faq-section { padding: 24px 20px; }
  .faq-question { font-size: 14.5px; padding: 14px 16px; }
  .faq-answer { padding: 12px 16px 16px; }
}

/* ==============================
   RICH STEP BLOCKS IN RECIPE CARD
   ============================== */
.rc-instructions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rc-ins-group-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--terra);
  margin: 12px 0 0;
  padding-bottom: 6px;
  border-bottom: 1.5px dashed var(--border-light);
}
.rc-step-block {
  background: var(--surface-tint);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color .2s;
}
.rc-step-block:hover {
  border-color: var(--border);
}
.rc-step-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rc-step-content {
  flex: 1;
}
.rc-step-heading {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
}
.rc-step-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}
.rc-step-media {
  margin-top: 14px;
  margin-left: 48px;
  border-radius: var(--r-sm);
  overflow: hidden;
  max-width: 480px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
}
.rc-step-media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .rc-step-block { padding: 14px; }
  .rc-step-top { gap: 12px; }
  .rc-step-heading { font-size: 15px; }
  .rc-step-text { font-size: 14px; }
  .rc-step-media { margin-left: 0; max-width: 100%; }
}

/* ==============================
   EQUIPMENT, MACROS & CHEF NOTES
   ============================== */
.rc-equipment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rc-equipment-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-tint);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.rc-macros-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.rc-macro-item {
  background: var(--surface-tint);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.macro-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  font-weight: 700;
}
.macro-val {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
}

.rc-chef-notes-card {
  background: #FDF9F2;
  border: 1.5px solid #EFE4D2;
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  padding: 16px 20px;
}
.chef-notes-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #B8860B;
  margin-bottom: 6px;
}
.rc-chef-notes-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}

@media (max-width: 700px) {
  .rc-macros-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .rc-macros-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================
   FINAL DISH SPOTLIGHT
   ============================== */
.final-dish-spotlight {
  margin: 40px 0 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}
.final-dish-spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--terra) 50%, var(--green) 100%);
}
.final-dish-header {
  margin-bottom: 24px;
}
.final-dish-badge {
  display: inline-block;
  background: #FDF6E8;
  color: #B8860B;
  border: 1px solid rgba(184,134,11,.25);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.final-dish-title {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.final-dish-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.final-dish-grid.no-image {
  grid-template-columns: 1fr;
}
.final-dish-media {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 2px solid #fff;
}
.final-dish-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.final-dish-photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(20,28,23,.8);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.final-dish-story {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.final-dish-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  margin: 0;
}
.final-dish-pairing-box {
  background: var(--surface-tint);
  border: 1px solid var(--border);
  border-left: 3.5px solid var(--green);
  border-radius: var(--r-sm);
  padding: 14px 18px;
}
.pairing-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 4px;
}
.final-dish-pairing-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

/* ==============================
   REVAMPED LUXURY AUTHOR BIO BOX
   ============================== */
.author-bio-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
  margin: 36px 0 48px;
  position: relative;
  overflow: hidden;
}
.author-avatar-lg {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(30,77,52,.2);
  border: 3px solid var(--surface-tint);
}
.author-letter {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.author-check {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: var(--terra);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  border: 2px solid #fff;
}
.author-bio-content {
  flex: 1;
}
.author-bio-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}
.author-bio-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terra);
}
.author-bio-name {
  font-size: 20px;
  color: var(--text);
  margin: 0;
}
.author-bio-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 18px;
}
.author-bio-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.author-bio-btn {
  padding: 8px 18px;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
}
.author-bio-btn svg {
  transition: transform .2s ease;
}
.author-bio-btn:hover svg {
  transform: translateX(3px);
}
.author-trust-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 12px;
  border-radius: 999px;
}

@media (max-width: 800px) {
  .final-dish-grid { grid-template-columns: 1fr; }
  .final-dish-media img { height: 260px; }
  .author-bio-box { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ==============================
   RECIPE CARD HEADER DISH EMBED
   ============================== */
.rc-header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.rc-header-info {
  flex: 1;
}
.rc-dish-tasting-notes {
  margin-top: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
}
.rc-dish-tasting-notes .notes-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.rc-dish-tasting-notes p {
  margin: 0;
}
.rc-header-dish-thumb {
  width: 170px;
  height: 170px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  position: relative;
  flex-shrink: 0;
}
.rc-header-dish-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rc-thumb-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(20,28,23,.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 768px) {
  .rc-header-layout { flex-direction: column-reverse; align-items: flex-start; gap: 18px; }
  .rc-header-dish-thumb { width: 100%; height: 220px; }
}

/* ==========================================================================
   Culinary UX Features: Reading Progress, Servings Scaler, Cook Mode & Floating Bar
   ========================================================================== */

/* Reading Progress Bar */
#reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 99999;
    pointer-events: none;
}
#reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2d5a27 0%, #c47c2b 50%, #e07a5f 100%);
    box-shadow: 0 1px 5px rgba(196, 124, 43, 0.4);
    transition: width 0.08s linear;
}

/* Ingredients Toolbar & Scaler */
.rc-section-head-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e8ded1;
}
.rc-section-head-bar .rc-section-title {
    margin-bottom: 0 !important;
}
.rc-ing-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.rc-scaler-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fbf8f3;
    padding: 3px 6px;
    border-radius: 8px;
    border: 1px solid #e8ded1;
}
.rc-scaler-label {
    font-size: 11px;
    font-weight: 700;
    color: #5c4033;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 2px;
}
.rc-scaler-btns {
    display: inline-flex;
    gap: 4px;
}
.rc-scale-btn {
    border: 1px solid transparent;
    background: #ffffff;
    color: #5c4033;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.rc-scale-btn:hover {
    background: #f5ebe0;
    color: #2d5a27;
}
.rc-scale-btn.active {
    background: #2d5a27;
    color: #ffffff;
    border-color: #2d5a27;
}

/* Cook Mode Button */
.rc-cook-mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #d4c5b3;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #4a3b32;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.rc-cook-mode-btn:hover {
    border-color: #c47c2b;
    color: #c47c2b;
    background: #fffbf5;
}
.rc-cook-mode-btn.is-active {
    background: #2d5a27;
    border-color: #2d5a27;
    color: #ffffff;
}
.rc-cook-mode-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #ede8e1;
    color: #555555;
    text-transform: uppercase;
    font-weight: 800;
}
.rc-cook-mode-btn.is-active .rc-cook-mode-badge {
    background: #81c784;
    color: #1b4316;
}

/* Ingredients Checklist & Strikethrough */
.rc-ingredients .rc-ing-item {
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.2s ease;
    padding: 6px 8px;
    border-radius: 6px;
    user-select: none;
}
.rc-ingredients .rc-ing-item:hover {
    background: #fcf8f2;
}
.rc-ingredients .rc-ing-item.is-checked {
    opacity: 0.55;
}
.rc-ingredients .rc-ing-item.is-checked .rc-ing-text {
    text-decoration: line-through;
    color: #7b8779;
}
.rc-ingredients .rc-ing-item.is-checked .rc-ing-check {
    color: #2d5a27;
}

/* Floating Quick Action Bar (Single Recipe Posts) */
.rc-floating-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9990;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 163, 115, 0.4);
    box-shadow: 0 10px 30px rgba(44, 30, 18, 0.15), 0 2px 6px rgba(0,0,0,0.06);
    border-radius: 40px;
    padding: 8px 16px 8px 20px;
    width: 92%;
    max-width: 620px;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}
.rc-floating-bar.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.rc-floating-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.rc-floating-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.rc-floating-title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 14px;
    font-weight: 700;
    color: #2c1e12;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rc-floating-rating {
    font-size: 11px;
    color: #6b5847;
    font-weight: 600;
}
.rc-floating-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.rc-float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}
.rc-float-jump {
    background: #2d5a27;
    color: #ffffff !important;
}
.rc-float-jump:hover {
    background: #1e3f1a;
    transform: translateY(-1px);
}
.rc-float-print {
    background: #f4ede4;
    color: #4a3b32;
    border: 1px solid #d4c5b3;
}
.rc-float-print:hover {
    background: #eadecd;
    color: #2c1e12;
}

@media (max-width: 580px) {
    .rc-floating-bar {
        bottom: 12px;
        padding: 6px 12px;
    }
    .rc-floating-title {
        max-width: 130px;
        font-size: 12px;
    }
    .rc-floating-rating {
        font-size: 10px;
    }
    .rc-float-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* ==========================================================================
   Recipe Print Optimization Stylesheet
   ========================================================================== */
@media print {
    /* Hide non-printable navigation, ads, headers, and footers */
    .top-bar,
    .site-header,
    .site-footer,
    .footer-divider-wrap,
    .rc-floating-bar,
    #reading-progress-container,
    .rc-cook-mode-btn,
    .rc-scaler-group,
    .single-share-strip,
    .comments-area,
    .related-recipes,
    .sidebar,
    .wp-block-buttons,
    .nav-links,
    .rc-header-actions {
        display: none !important;
    }

    /* Print-friendly container formatting */
    body {
        background: #ffffff !important;
        color: #1a1a1a !important;
        font-size: 11pt !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-content,
    .wrap,
    .content-area,
    main {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Keep Recipe Card looking crisp and compact */
    #recipe-card,
    .recipe-card {
        border: 1px solid #999 !important;
        box-shadow: none !important;
        border-radius: 4px !important;
        padding: 20px !important;
        margin: 10px 0 !important;
        page-break-inside: avoid;
    }

    .rc-title {
        font-size: 20pt !important;
        color: #000 !important;
        margin-bottom: 8px !important;
    }

    .rc-meta-grid {
        border-top: 1px solid #ccc !important;
        border-bottom: 1px solid #ccc !important;
        padding: 8px 0 !important;
        margin-bottom: 15px !important;
    }

    .rc-section-title {
        font-size: 13pt !important;
        border-bottom: 1px solid #ddd !important;
        padding-bottom: 4px !important;
    }

    .rc-step-card {
        page-break-inside: avoid;
        margin-bottom: 12px !important;
    }

    /* Show checkboxes neatly */
    .rc-ing-check {
        font-size: 12pt !important;
        color: #333 !important;
    }
}

/* Interactive Recipe Star Rating */
.rc-stars-interactive {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.rc-star-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 19px;
    color: #cbd5e1;
    cursor: pointer;
    transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.15s ease;
    line-height: 1;
}
.rc-star-btn:hover {
    transform: scale(1.3);
}
.rc-star-btn.is-filled {
    color: #eab308 !important;
}
.rc-star-btn.is-hover {
    color: #f59e0b !important;
}
.rc-rating-feedback {
    background: #eaf5e6;
    color: #244b1f;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #cde8c5;
}

/* Rank Math Breadcrumbs Styling */
.flavor-breadcrumbs {
    font-size: 13px;
    color: #8c7e6d;
    margin-bottom: 12px;
    line-height: 1.4;
}
.flavor-breadcrumbs a {
    color: #6b5847;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}
.flavor-breadcrumbs a:hover {
    color: #2d5a27;
    text-decoration: underline;
}
.flavor-breadcrumbs .separator {
    margin: 0 7px;
    color: #c4b5a5;
    font-size: 11px;
}
.flavor-breadcrumbs .last {
    color: #2d5a27;
    font-weight: 700;
}

/* Ingredients Showcase Figure (Below Intro) */
.recipe-ingredients-figure {
    margin: 32px 0 36px 0 !important;
    text-align: center;
}
.recipe-ingredients-figure img {
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(44, 30, 18, 0.08);
    border: 1px solid #e8ded1;
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.25s ease;
}
.recipe-ingredients-figure img:hover {
    transform: scale(1.008);
}
.recipe-ingredients-figure figcaption {
    font-size: 13px;
    color: #6b5847;
    margin-top: 10px;
    padding: 0 10px;
    line-height: 1.5;
    font-style: italic;
}
.recipe-ingredients-figure figcaption strong {
    color: #2d5a27;
    font-style: normal;
}

/* ==========================================================================
   Google EEAT & AdSense Transparency Styling
   ========================================================================== */

/* Single Post EEAT Trust Bar */
.eeat-trust-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    background: #fbf9f5;
    border: 1px solid #e8ded1;
    border-radius: 30px;
    padding: 6px 16px;
    margin: 14px 0 20px 0;
    font-size: 12px;
    color: #6b5847;
}
.eeat-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.eeat-trust-item a {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 700;
}
.eeat-trust-item a:hover {
    text-decoration: underline;
}
.eeat-trust-dot {
    color: #d4c5b3;
}

/* Editorial Transparency Card */
.eeat-editorial-card {
    background: linear-gradient(135deg, #fbf9f5 0%, #f5eee4 100%);
    border: 1px solid #d4c5b3;
    border-left: 4px solid #2d5a27;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 32px 0 24px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.eeat-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.eeat-card-shield {
    font-size: 24px;
    color: #2d5a27;
}
.eeat-card-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #2c1e12;
}
.eeat-card-subtitle {
    font-size: 11px;
    color: #6b5847;
    font-weight: 600;
}
.eeat-card-text {
    font-size: 13px;
    line-height: 1.6;
    color: #4a3b32;
    margin: 0;
}
.eeat-card-text a {
    color: #2d5a27;
    font-weight: 700;
    text-decoration: underline;
}

/* Author Archive Page (author.php) */
.author-hero-wrap {
    background: linear-gradient(180deg, #f7f3ed 0%, #ffffff 100%);
    padding: 30px 0 45px 0;
    border-bottom: 1px solid #e8ded1;
}
.author-profile-card {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 10px 35px rgba(44, 30, 18, 0.08);
    border: 1px solid #e8ded1;
    margin-top: 15px;
}
.author-profile-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.author-hero-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2d5a27;
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.2);
}
.author-verified-badge {
    margin-top: 10px;
    background: #2d5a27;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.25);
}
.author-profile-info {
    flex: 1;
}
.author-role-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: #c47c2b;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.author-name-title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 32px;
    font-weight: 800;
    color: #2c1e12;
    margin: 4px 0 12px 0;
}
.author-full-bio {
    font-size: 15px;
    line-height: 1.65;
    color: #4a3b32;
    margin-bottom: 22px;
}
.author-credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 22px;
    background: #fbf9f5;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e8ded1;
}
.author-cred-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-cred-icon {
    font-size: 20px;
}
.author-cred-item strong {
    display: block;
    font-size: 13px;
    color: #2c1e12;
}
.author-cred-item span {
    font-size: 11px;
    color: #6b5847;
}
.author-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.author-connect-label {
    font-size: 13px;
    font-weight: 700;
    color: #2c1e12;
}
.social-chip {
    background: #f4ede4;
    color: #4a3b32;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #d4c5b3;
    transition: all 0.2s ease;
}
.social-chip:hover {
    background: #2d5a27;
    color: #ffffff;
    border-color: #2d5a27;
}
.author-recipes-section {
    padding: 50px 0;
}
.author-recipe-pill {
    background: #f4ede4;
    color: #5c4033;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #d4c5b3;
}

@media (max-width: 768px) {
    .author-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
    .author-credentials-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .author-social-row {
        justify-content: center;
    }
    .eeat-trust-bar {
        border-radius: 14px;
        padding: 10px 14px;
    }
}


/* =====================================================
   GOOGLE EEAT & ADSENSE EDITORIAL DISCLOSURE CARD
   ===================================================== */
.eeat-editorial-disclosure {
    background: #fdfaf6;
    border: 1px solid #ebd9c8;
    border-radius: 16px;
    padding: 28px 30px;
    margin: 32px 0 45px 0;
    box-shadow: 0 4px 18px rgba(44, 30, 18, 0.05);
}

.eeat-disclosure-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8ded1;
    margin-bottom: 22px;
}

.eeat-disclosure-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 19px;
    font-weight: 700;
    color: #2c1e12;
}

.eeat-disclosure-badge svg {
    color: #2d5a27;
    flex-shrink: 0;
}

.eeat-compliance-tag {
    display: inline-flex;
    align-items: center;
    background: #eef6ee;
    color: #245220;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #bfe0be;
}

.eeat-disclosure-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 22px;
}

.eeat-disclosure-col {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #f0e6dc;
    box-shadow: 0 2px 8px rgba(44, 30, 18, 0.02);
}

.eeat-disclosure-col h5 {
    margin: 0 0 10px 0;
    font-size: 14.5px;
    font-weight: 700;
    color: #2c1e12;
    display: flex;
    align-items: center;
    gap: 6px;
}

.eeat-disclosure-col p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: #5c4a3b;
}

.eeat-disclosure-col a {
    color: #2d5a27;
    text-decoration: underline;
    font-weight: 600;
}

.eeat-disclosure-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed #dfcebe;
    font-size: 13px;
    color: #7a6858;
}

.eeat-disclosure-footer a {
    color: #2d5a27;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .eeat-editorial-disclosure {
        padding: 20px 16px;
    }
    .eeat-disclosure-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .eeat-disclosure-body {
        grid-template-columns: 1fr;
    }
    .eeat-disclosure-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
