/* ================================
   THE MONEY, HOME & CUISINE MAGAZINE — SHARED STYLESHEET v2
   ================================ */

/* 1. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
input, select { font: inherit; }

/* 2. CSS VARIABLES */
:root {
  --navy:     #0D1F2D;
  --navy-md:  #1A3347;
  --navy-lt:  #243D52;
  --green:    #00C896;
  --green-dk: #00A87E;
  --gold:     #F59E0B;
  --red:      #EF4444;
  --white:    #FFFFFF;
  --off:      #F7F8FA;
  --border:   #E8ECF0;
  --muted:    #718096;
  --text:     #1A202C;
  --radius:   8px;
  --shadow:   0 1px 3px rgba(0,0,0,.07), 0 4px 14px rgba(0,0,0,.05);
  --shadow-hv:0 4px 12px rgba(0,0,0,.12), 0 12px 32px rgba(0,0,0,.09);
  --max-w:    1200px;
  --pad:      clamp(16px,4vw,40px);
}

/* 3. BASE */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--off);
  overflow-x: hidden;
  line-height: 1.6;
}

/* 4. TYPOGRAPHY */
h1,h2,h3 { font-family:'Playfair Display',serif; line-height:1.2; }
h1 { font-size:clamp(32px,5vw,56px); font-weight:900; }
h2 { font-size:clamp(20px,3vw,30px); font-weight:700; }
h3 { font-size:clamp(15px,2vw,18px); font-weight:700; }

/* 5. LAYOUT */
.container { max-width:var(--max-w); margin:0 auto; padding:0 var(--pad); }
.main-content { padding:40px 0 60px; }

/* 6. ACCESSIBILITY */
.skip-link {
  position:absolute; top:-100px; left:16px;
  background:var(--green); color:var(--navy);
  font-weight:700; padding:10px 18px; border-radius:var(--radius);
  z-index:9999; transition:top .2s; font-size:14px;
}
.skip-link:focus { top:16px; }

/* 7. BADGES */
.badge {
  display:inline-flex; align-items:center; gap:5px;
  font-size:9px; font-weight:800; letter-spacing:.1em;
  text-transform:uppercase; padding:3px 8px; border-radius:4px;
}
.badge-live  { background:#FEE2E2; color:var(--red); }
.badge-gold  { background:#FEF3C7; color:#92400E; }
.badge-green { background:#D1FAF0; color:var(--green-dk); }
.badge-navy  { background:var(--navy); color:var(--white); }
.dot-pulse {
  width:6px; height:6px; border-radius:50%;
  background:var(--red); display:inline-block;
  animation:pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* 8. ANIMATIONS */
.fade-up {
  opacity:0; transform:translateY(22px);
  transition:opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity:1; transform:none; }

/* 9. TICKER */
.ticker-bar {
  background:var(--navy); color:var(--white);
  height:34px; overflow:hidden;
  display:flex; align-items:center;
}
.ticker-wrap { flex:1; overflow:hidden; height:34px; display:flex; align-items:center; }
.ticker-inner {
  display:flex; align-items:center; white-space:nowrap;
  animation:ticker 70s linear infinite;
}
.ticker-inner:hover { animation-play-state:paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:500; padding:0 28px;
}
.ticker-label {
  font-size:9px; font-weight:800; letter-spacing:.1em;
  text-transform:uppercase; padding:2px 6px; border-radius:3px;
  flex-shrink:0;
}
.lbl-news   { background:#F59E0B; color:#1A202C; }
.lbl-money  { background:#10B981; color:#fff; }
.lbl-life   { background:#EC4899; color:#fff; }
.lbl-fashion{ background:#8B5CF6; color:#fff; }
.lbl-sky    { background:#3B82F6; color:#fff; }
.lbl-guard  { background:#1D4ED8; color:#fff; }
.ticker-dot { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.3); flex-shrink:0; }

/* 10. HEADER */
.site-header {
  background:var(--navy); position:sticky; top:0; z-index:100;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.nav-inner {
  max-width:var(--max-w); margin:0 auto;
  padding:0 var(--pad);
  display:flex; align-items:center; gap:20px; height:60px;
}
.nav-logo {
  display:flex; align-items:center; gap:10px;
  font-family:'Playfair Display',serif;
  font-size:22px; font-weight:900; color:var(--white);
  flex-shrink:0; text-decoration:none;
}
.nav-logo em { font-style:italic; color:var(--green); }
.nav-logo-mark {
  width:32px; height:32px; background:var(--green);
  border-radius:6px; display:flex; align-items:center; justify-content:center;
}
.nav-cats { display:flex; align-items:center; gap:2px; flex:1; }
.nav-cats a {
  display:flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600; color:rgba(255,255,255,.6);
  padding:6px 11px; border-radius:6px;
  text-decoration:none; white-space:nowrap;
  transition:background .15s, color .15s;
}
.nav-cats a:hover, .nav-cats a.active {
  background:rgba(255,255,255,.09); color:var(--white);
}
.nav-cats a .icon { width:14px; height:14px; flex-shrink:0; }
.nav-about {
  font-size:13px; font-weight:600; color:rgba(255,255,255,.55);
  padding:6px 12px; border-radius:6px; text-decoration:none;
  transition:color .15s, background .15s; flex-shrink:0;
}
.nav-about:hover { color:var(--white); background:rgba(255,255,255,.07); }
.nav-toggle {
  display:none; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:6px; color:var(--white);
  transition:background .15s;
}
.nav-toggle:hover { background:rgba(255,255,255,.1); }

/* 11. MOBILE NAV */
.mobile-nav {
  position:fixed; inset:0; background:var(--navy);
  z-index:200; padding:20px var(--pad);
  overflow-y:auto; display:flex; flex-direction:column; gap:6px;
}
.mobile-nav[hidden] { display:none; }
.mobile-nav-close {
  align-self:flex-end; color:var(--white);
  padding:8px; border-radius:6px; transition:background .15s;
  margin-bottom:8px;
}
.mobile-nav-close:hover { background:rgba(255,255,255,.1); }
.mobile-nav-link {
  display:flex; align-items:center; gap:12px;
  font-size:17px; font-weight:600; color:var(--white);
  padding:13px 16px; border-radius:8px; text-decoration:none;
  transition:background .15s;
}
.mobile-nav-link:hover { background:rgba(255,255,255,.07); }
.mobile-nav-link .icon { width:20px; height:20px; flex-shrink:0; color:var(--green); }
.mobile-nav-divider { height:1px; background:rgba(255,255,255,.09); margin:6px 0; }

/* 12. WEATHER BAR */
.weather-bar {
  background:var(--navy-md);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.weather-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 var(--pad);
  display:flex; align-items:stretch;
  overflow-x:auto; scrollbar-width:none; -ms-overflow-style:none;
}
.weather-inner::-webkit-scrollbar { display:none; }
.weather-city {
  display:flex; align-items:center; gap:10px;
  padding:10px 22px; white-space:nowrap;
  border-right:1px solid rgba(255,255,255,.06); flex-shrink:0;
  cursor:default;
}
.weather-city-name { font-size:10px; font-weight:800; color:var(--white); letter-spacing:.04em; text-transform:uppercase; }
.weather-city-desc { font-size:10px; color:rgba(255,255,255,.4); margin-top:1px; }
.weather-temp { font-family:'Playfair Display',serif; font-weight:700; font-size:16px; color:var(--green); }
.weather-icon { font-size:18px; line-height:1; }

/* 13. PAGE HERO (FULL — homepage) */
.hero {
  background:var(--navy);
  background-image:linear-gradient(135deg,var(--navy) 0%,var(--navy-md) 100%);
  padding:clamp(40px,6vw,80px) 0; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 70% 50%,rgba(0,200,150,.07) 0%,transparent 70%);
  pointer-events:none;
}
.hero-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 var(--pad);
  display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center;
}
.hero h1 {
  font-size:clamp(42px,5vw,68px); font-weight:900; color:var(--white);
  line-height:1.05; letter-spacing:-.02em; margin-bottom:18px;
}
.hero h1 em { font-style:italic; color:var(--green); }
.hero-sub { font-size:15px; color:rgba(255,255,255,.6); margin-bottom:28px; max-width:480px; line-height:1.65; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.btn-hero {
  background:var(--green); color:var(--navy); font-weight:700; font-size:14px;
  padding:12px 22px; border-radius:var(--radius);
  display:inline-flex; align-items:center; gap:8px; text-decoration:none;
  transition:background .15s, transform .15s;
}
.btn-hero:hover { background:var(--green-dk); transform:translateY(-1px); }
.btn-hero-ghost {
  background:transparent; color:rgba(255,255,255,.7); font-weight:600; font-size:14px;
  padding:12px 22px; border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.18);
  display:inline-flex; align-items:center; gap:8px; text-decoration:none;
  transition:border-color .15s, color .15s;
}
.btn-hero-ghost:hover { border-color:rgba(255,255,255,.45); color:var(--white); }
.hero-clock { text-align:center; flex-shrink:0; }
.hero-clock-time {
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,4.5vw,54px); font-weight:700; color:var(--white);
  letter-spacing:-.03em; line-height:1; margin-bottom:6px;
}
.hero-clock-date { font-size:11px; font-weight:600; color:rgba(255,255,255,.45); letter-spacing:.06em; text-transform:uppercase; }

/* 14. PAGE HERO (INNER pages) */
.page-hero {
  background:var(--navy); padding:clamp(28px,4vw,52px) 0;
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 90% 50%,rgba(0,200,150,.06) 0%,transparent 70%);
  pointer-events:none;
}
.page-hero-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 var(--pad);
  display:flex; align-items:center; gap:18px;
}
.page-hero-icon {
  width:50px; height:50px; background:var(--green);
  border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.page-hero-icon .icon { width:26px; height:26px; color:var(--navy); }
.page-hero h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,4vw,40px); font-weight:900; color:var(--white);
  letter-spacing:-.02em; margin-bottom:5px;
}
.page-hero-sub { font-size:13px; color:rgba(255,255,255,.5); line-height:1.5; }

/* 15. SECTION HEADERS */
.section-head {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:20px; padding-top:40px;
}
.section-title {
  font-family:'Playfair Display',serif;
  font-size:21px; font-weight:700; color:var(--navy);
  display:flex; align-items:center; gap:10px;
}
.section-title .icon { width:20px; height:20px; color:var(--green); }
.see-all {
  font-size:12px; font-weight:700; color:var(--green);
  display:flex; align-items:center; gap:4px;
  text-decoration:none; transition:gap .15s; white-space:nowrap;
}
.see-all:hover { gap:8px; }
.see-all .icon { width:14px; height:14px; }

/* 16. NEWS GRID */
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:48px; }
.news-grid.cols-2 { grid-template-columns:repeat(2,1fr); }

/* 17. STORY CARD */
.story-card {
  background:var(--white); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow);
  transition:box-shadow .2s, transform .2s;
  display:flex; flex-direction:column; text-decoration:none; color:inherit;
}
.story-card:hover { box-shadow:var(--shadow-hv); transform:translateY(-2px); }
.story-card-img {
  width:100%; aspect-ratio:16/9;
  background:linear-gradient(135deg,var(--navy-md) 0%,var(--navy) 100%);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; background-size:cover; background-position:center;
}
.story-card-img img { width:100%; height:100%; object-fit:cover; display:block; }
.story-card-body { padding:16px; flex:1; display:flex; flex-direction:column; }
.story-card-source { font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--green); margin-bottom:7px; }
.story-card-title {
  font-family:'Playfair Display',serif; font-weight:700; color:var(--navy);
  line-height:1.3; font-size:15px; margin-bottom:8px; flex:1;
}
.story-card-desc {
  font-size:12px; color:var(--muted); line-height:1.5;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.story-card-meta {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 16px; border-top:1px solid var(--border);
  font-size:11px; color:var(--muted); font-weight:600;
}

/* 18. SKELETON */
.skeleton {
  background:linear-gradient(90deg,var(--border) 25%,#e0e4e8 50%,var(--border) 75%);
  background-size:200% 100%; animation:skel 1.5s infinite;
  border-radius:4px;
}
@keyframes skel { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* 19. THREE-COLUMN LIST */
.three-col { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:48px; }
.col-section-head {
  font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--navy);
  padding-bottom:12px; border-bottom:2px solid var(--green); margin-bottom:14px;
  display:flex; align-items:center; gap:8px;
}
.news-list-item {
  display:flex; gap:12px; padding:11px 0; border-bottom:1px solid var(--border);
  text-decoration:none; color:inherit; transition:opacity .15s;
}
.news-list-item:hover { opacity:.72; }
.news-list-item:last-child { border-bottom:none; }
.news-num { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--border); line-height:1; flex-shrink:0; width:26px; }
.news-item-title { font-size:13px; font-weight:600; color:var(--navy); line-height:1.4; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.news-item-source { font-size:10px; color:var(--muted); margin-top:3px; font-weight:600; }

/* 20. FEATURE ARTICLE */
.feature-article {
  background:var(--white); border-radius:var(--radius);
  padding:28px 32px; box-shadow:var(--shadow); margin-bottom:24px;
}
.feature-article h2 {
  font-family:'Playfair Display',serif; font-size:21px; font-weight:700; color:var(--navy);
  margin-bottom:12px; padding-bottom:12px; border-bottom:2px solid var(--green);
}
.feature-article h3 { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:var(--navy); margin:18px 0 6px; }
.feature-article p { font-size:14px; color:var(--text); line-height:1.75; margin-bottom:12px; }
.feature-article ul { padding:0; margin-bottom:12px; }
.feature-article ul li {
  font-size:14px; color:var(--text); line-height:1.7;
  padding:4px 0 4px 20px; position:relative;
}
.feature-article ul li::before {
  content:''; position:absolute; left:0; top:13px;
  width:8px; height:8px; border-radius:50%; background:var(--green);
}
.feature-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-bottom:48px; }
.feature-grid.three { grid-template-columns:repeat(3,1fr); }

/* 21. RECIPE GRID */
.recipe-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:48px; }
.recipe-card { background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); display:flex; flex-direction:column; }
.recipe-card-img { width:100%; aspect-ratio:16/9; background:var(--navy); }
.recipe-card-img img { width:100%; height:100%; object-fit:cover; }
.recipe-card-body { padding:20px; flex:1; }
.recipe-card-label { font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.recipe-card-name { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--navy); line-height:1.3; margin-bottom:8px; }
.recipe-card-desc { font-size:13px; color:var(--muted); margin-bottom:14px; line-height:1.5; }
.recipe-card-tags { display:flex; gap:6px; flex-wrap:wrap; }
.recipe-tag { font-size:10px; font-weight:700; padding:3px 8px; border-radius:4px; background:var(--off); color:var(--muted); }

/* 22. RATES TABLE */
.rates-card { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; margin-bottom:24px; }
.rates-card-head { background:var(--navy); padding:14px 20px; display:flex; align-items:center; justify-content:space-between; }
.rates-card-head h3 { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--white); }
.rates-updated { font-size:11px; color:rgba(255,255,255,.4); }
.rates-table { width:100%; border-collapse:collapse; }
.rates-table th { font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); padding:10px 20px; text-align:left; border-bottom:1px solid var(--border); background:var(--off); }
.rates-table td { padding:12px 20px; font-size:13px; border-bottom:1px solid var(--border); color:var(--text); }
.rates-table tr:last-child td { border-bottom:none; }
.rates-table tr:hover td { background:#FAFCFE; }
.rate-val { font-weight:800; color:var(--green-dk); font-size:15px; }
.rate-prov { font-weight:700; }
.rate-note { font-size:11px; color:var(--muted); }

/* 23. EXCHANGE RATES WIDGET ─ NEW ─ */
.rates-strip {
  display:grid; grid-template-columns:repeat(6,1fr); gap:1px;
  background:var(--border); border-radius:var(--radius);
  overflow:hidden; margin-bottom:24px;
  box-shadow:var(--shadow);
}
.rate-item {
  background:var(--white); padding:14px 16px;
  display:flex; align-items:center; gap:10px;
}
.rate-flag { font-size:20px; flex-shrink:0; }
.rate-labels { flex:1; min-width:0; }
.rate-code { font-size:10px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); display:block; }
.rate-name { font-size:10px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block; }
.rate-item .rate-val { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--green-dk); flex-shrink:0; }
.rates-caption { font-size:11px; color:var(--muted); margin-bottom:28px; margin-top:-18px; }

/* 24. BANK HOLIDAY WIDGET ─ NEW ─ */
.bh-banner {
  background:linear-gradient(135deg,#064E3B,#065F46);
  border-radius:var(--radius); padding:16px 20px;
  margin-bottom:28px; box-shadow:var(--shadow);
}
.bh-wrap { display:flex; align-items:center; gap:16px; }
.bh-emoji { font-size:28px; flex-shrink:0; }
.bh-details { flex:1; }
.bh-label { font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.55); display:block; margin-bottom:3px; }
.bh-name { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--white); display:block; }
.bh-date { font-size:12px; color:rgba(255,255,255,.6); display:block; margin-top:2px; }
.bh-countdown { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--green); flex-shrink:0; text-align:right; white-space:nowrap; }

/* 25. QUOTE WIDGET ─ NEW ─ */
.quote-widget {
  background:var(--navy); border-radius:var(--radius);
  padding:28px 32px; margin-bottom:48px; text-align:center;
  box-shadow:var(--shadow); position:relative;
}
.quote-icon { width:28px; height:28px; color:var(--green); margin:0 auto 14px; display:block; }
.quote-text {
  font-family:'Playfair Display',serif; font-size:clamp(16px,2.5vw,20px);
  font-weight:700; color:var(--white); line-height:1.5;
  font-style:italic; margin-bottom:14px;
}
.quote-author { font-size:13px; color:rgba(255,255,255,.5); font-weight:600; font-style:normal; display:block; }

/* 26. ADVICE WIDGET ─ NEW ─ */
.advice-widget {
  background:linear-gradient(135deg,#FEF3C7,#FDE68A);
  border-radius:var(--radius); padding:18px 22px; margin-bottom:28px;
  border-left:4px solid var(--gold);
}
.advice-text { font-size:14px; color:#78350F; line-height:1.65; font-weight:500; }

/* 27. TV TONIGHT WIDGET ─ NEW ─ */
.tv-widget {
  background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow); overflow:hidden; margin-bottom:48px;
}
.tv-widget-head {
  background:var(--navy); padding:14px 20px;
  display:flex; align-items:center; gap:10px;
}
.tv-widget-head h3 { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--white); }
.tv-widget-head .icon { width:18px; height:18px; color:var(--green); }
.tv-list { padding:8px 0; }
.tv-item {
  display:flex; align-items:center; gap:14px;
  padding:11px 20px; border-bottom:1px solid var(--border);
}
.tv-item:last-child { border-bottom:none; }
.tv-time {
  font-family:'Playfair Display',serif; font-size:14px; font-weight:700;
  color:var(--green-dk); flex-shrink:0; width:46px;
}
.tv-info { flex:1; min-width:0; }
.tv-show { font-size:13px; font-weight:700; color:var(--navy); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.tv-meta { font-size:11px; color:var(--muted); margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.tv-genre {
  font-size:9px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  background:var(--off); color:var(--muted); padding:3px 7px;
  border-radius:4px; flex-shrink:0;
}

/* 28. BOOK OF THE WEEK ─ NEW ─ */
.books-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:48px;
}
.book-card {
  background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow); overflow:hidden;
  display:flex; flex-direction:column;
  text-decoration:none; color:inherit;
  transition:box-shadow .2s, transform .2s;
}
.book-card:hover { box-shadow:var(--shadow-hv); transform:translateY(-2px); }
.book-cover {
  width:100%; aspect-ratio:2/3; background:var(--off);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.book-cover img { width:100%; height:100%; object-fit:cover; }
.book-cover-ph { font-size:40px; }
.book-meta { padding:14px; }
.book-title {
  font-family:'Playfair Display',serif; font-size:13px; font-weight:700;
  color:var(--navy); line-height:1.35; margin-bottom:5px;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.book-author { font-size:11px; color:var(--muted); font-weight:600; }

/* 29. ON THIS DAY ─ NEW ─ */
.otd-widget {
  background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow); overflow:hidden; margin-bottom:48px;
}
.otd-head {
  background:linear-gradient(135deg,var(--navy-md),var(--navy));
  padding:14px 20px; display:flex; align-items:center; gap:10px;
}
.otd-head h3 { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--white); }
.otd-head-sub { font-size:11px; color:rgba(255,255,255,.45); margin-top:1px; }
.otd-list { padding:6px 0; }
.otd-item {
  display:flex; gap:16px; align-items:flex-start;
  padding:13px 20px; border-bottom:1px solid var(--border);
}
.otd-item:last-child { border-bottom:none; }
.otd-year {
  font-family:'Playfair Display',serif; font-size:15px; font-weight:700;
  color:var(--green-dk); flex-shrink:0; width:42px; padding-top:1px;
}
.otd-text { font-size:13px; color:var(--text); line-height:1.55; }

/* 30. SCAM ALERT */
.scam-alert {
  background:#FFF7F7; border:1px solid #FEE2E2; border-left:4px solid var(--red);
  border-radius:var(--radius); padding:20px 24px; margin-bottom:24px;
}
.scam-alert-head { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.scam-alert-head h3 { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--red); }
.scam-alert p { font-size:14px; color:var(--text); line-height:1.7; margin-bottom:8px; }
.scam-alert strong { color:var(--red); }

/* 31. TIPS GRID */
.tips-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:48px; }
.tip-card { background:var(--white); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow); }
.tip-card-icon { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:12px; font-size:20px; }
.tip-card h3 { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.tip-card p { font-size:13px; color:var(--muted); line-height:1.6; }
.tip-card a { display:inline-flex; align-items:center; gap:4px; font-size:12px; font-weight:700; color:var(--green); text-decoration:none; margin-top:10px; transition:gap .15s; }
.tip-card a:hover { gap:8px; }
.tip-card a .icon { width:12px; height:12px; }

/* 32. INFO / SUCCESS BOXES */
.info-box { background:#EFF6FF; border:1px solid #BFDBFE; border-left:4px solid #3B82F6; border-radius:var(--radius); padding:14px 18px; margin-bottom:16px; }
.info-box p { font-size:13px; color:#1E40AF; line-height:1.6; }
.info-box a { color:#2563EB; font-weight:700; text-decoration:underline; }
.success-box { background:#F0FDF4; border:1px solid #BBF7D0; border-left:4px solid var(--green); border-radius:var(--radius); padding:14px 18px; margin-bottom:16px; }
.success-box p { font-size:13px; color:#14532D; line-height:1.6; }

/* 33. FOOTER */
.site-footer { background:var(--navy); border-top:1px solid rgba(255,255,255,.05); padding:48px 0 24px; margin-top:40px; }
.footer-inner { max-width:var(--max-w); margin:0 auto; padding:0 var(--pad); display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; }
.footer-logo { font-family:'Playfair Display',serif; font-size:22px; font-weight:900; color:var(--white); display:flex; align-items:center; gap:10px; margin-bottom:12px; text-decoration:none; }
.footer-logo em { font-style:italic; color:var(--green); }
.footer-tagline { font-size:13px; color:rgba(255,255,255,.45); line-height:1.65; max-width:260px; margin-bottom:10px; }
.footer-api-note { font-size:10px; color:rgba(255,255,255,.25); line-height:1.6; max-width:280px; }
.footer-col h4 { font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:16px; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { font-size:13px; color:rgba(255,255,255,.55); text-decoration:none; transition:color .15s; }
.footer-col ul li a:hover { color:var(--white); }
.footer-bottom { max-width:var(--max-w); margin:40px auto 0; padding:24px var(--pad) 0; border-top:1px solid rgba(255,255,255,.06); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:12px; color:rgba(255,255,255,.28); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:12px; color:rgba(255,255,255,.28); text-decoration:none; transition:color .15s; }
.footer-legal a:hover { color:rgba(255,255,255,.6); }

/* 34. SVG ICON UTILITY */
.icon { display:inline-block; width:18px; height:18px; flex-shrink:0; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.icon-sm { width:14px; height:14px; }
.icon-lg { width:22px; height:22px; }

/* 35. DIVIDER */
.divider { height:1px; background:var(--border); margin:28px 0; }

/* 36. ABOUT */
.about-section { background:var(--white); border-radius:var(--radius); padding:36px 40px; box-shadow:var(--shadow); margin-bottom:24px; }
.about-section h2 { font-family:'Playfair Display',serif; font-size:24px; font-weight:700; color:var(--navy); margin-bottom:14px; }
.about-section p { font-size:15px; color:var(--text); line-height:1.8; margin-bottom:14px; }
.about-values { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }
.value-card { background:var(--off); border-radius:var(--radius); padding:24px; text-align:center; }
.value-card-icon { font-size:30px; margin-bottom:12px; }
.value-card h3 { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.value-card p { font-size:13px; color:var(--muted); line-height:1.6; }

/* 37. FOOD SPECIFIC */
.fakeaway-card { background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); margin-bottom:24px; }
.fakeaway-head { background:linear-gradient(135deg,#92400E,#D97706); padding:20px 24px; }
.fakeaway-head h3 { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--white); }
.fakeaway-head p { font-size:13px; color:rgba(255,255,255,.7); margin-top:3px; }
.fakeaway-body { padding:24px; }
.ingredient-list { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:16px; }
.ingredient { font-size:13px; color:var(--text); padding:6px 10px; background:var(--off); border-radius:5px; }

/* 38. SEASON GRID */
.season-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:48px; }
.season-card { background:var(--white); border-radius:var(--radius); padding:18px; box-shadow:var(--shadow); text-align:center; }
.season-emoji { font-size:28px; margin-bottom:8px; }
.season-name { font-family:'Playfair Display',serif; font-size:14px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.season-tip { font-size:11px; color:var(--muted); line-height:1.4; }

/* 39. SECTION PREVIEW CARDS (homepage) ─ NEW ─ */
.preview-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:48px; }
.preview-card {
  background:var(--white); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); text-decoration:none; color:inherit;
  display:flex; flex-direction:column;
  transition:box-shadow .2s, transform .2s;
}
.preview-card:hover { box-shadow:var(--shadow-hv); transform:translateY(-2px); }
.preview-card-top {
  padding:24px 20px; display:flex; flex-direction:column; gap:10px; flex:1;
}
.preview-card-icon {
  width:42px; height:42px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
}
.preview-card-icon .icon { width:22px; height:22px; }
.preview-card-section { font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--green); }
.preview-card-title { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:var(--navy); line-height:1.35; flex:1; }
.preview-card-cta {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 20px; border-top:1px solid var(--border);
  font-size:12px; font-weight:700; color:var(--green);
}
.preview-card-cta .icon { width:14px; height:14px; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .nav-cats { display:none; }
  .nav-toggle { display:flex; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:28px; }
  .rates-strip { grid-template-columns:repeat(3,1fr); }
  .books-grid { grid-template-columns:repeat(2,1fr); }
  .preview-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .news-grid { grid-template-columns:1fr 1fr; }
  .three-col { grid-template-columns:1fr; }
  .recipe-grid { grid-template-columns:1fr; }
  .feature-grid { grid-template-columns:1fr; }
  .feature-grid.three { grid-template-columns:1fr; }
  .tips-grid { grid-template-columns:1fr 1fr; }
  .season-grid { grid-template-columns:repeat(2,1fr); }
  .hero-clock { display:none; }
  .about-values { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; gap:22px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .ingredient-list { grid-template-columns:1fr; }
  .bh-wrap { flex-wrap:wrap; }
  .bh-countdown { width:100%; }
}
@media (max-width:480px) {
  .news-grid { grid-template-columns:1fr; }
  .tips-grid { grid-template-columns:1fr; }
  .feature-article { padding:20px; }
  .about-section { padding:22px; }
  .rates-strip { grid-template-columns:repeat(2,1fr); }
  .books-grid { grid-template-columns:repeat(2,1fr); }
  .preview-grid { grid-template-columns:1fr 1fr; }
}
