﻿/* ================================================================
   Daily Insider Tips â€” Newsprint Editorial Design System
   Black Â· Off-white Â· Subtle red accents
   Cormorant Garamond (headings) Â· Inter (body)
   Sharp edges Â· Visible grid Â· Flat surfaces Â· Quiet motion
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* â”€â”€ Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --bg:        #f7f3e8;
  --bg-alt:    #efe8dc;
  --bg-card:   #fcfbf6;
  --ink:       #121212;
  --ink-soft:  #2a2724;
  --muted:     #6b655f;

  --violet:    #b12d20;
  --violet-l:  #f8e3de;
  --violet-d:  #7f2018;
  --pink:      #b12d20;
  --pink-l:    #f8e3de;
  --pink-d:    #7f2018;
  --yellow:    #d7b06b;
  --yellow-l:  #f4e4bf;
  --yellow-d:  #8b6a2a;
  --mint:      #2d4f41;
  --mint-l:    #e5efe9;
  --mint-d:    #254036;
  --sky:       #53616f;
  --sky-l:     #e7ecef;

  --accent:    #b12d20;
  --accent-d:  #7f2018;
  --accent-t:  #f8e3de;
  --link:      #b12d20;

  --border:    #1f1d1b;
  --border-2:  #7c776f;
  --bw:        2px;

  --shadow-sm:     none;
  --shadow-md:     none;
  --shadow-lg:     none;
  --shadow-xl:     none;
  --shadow-violet: none;
  --shadow-yellow: none;
  --shadow-pink:   none;
  --shadow-mint:   none;

  --r-sm:  2px;
  --r-md:  4px;
  --r-lg:  6px;
  --r-xl:  8px;
  --r-2xl: 10px;
  --r-pill: 999px;
  --radius: 6px;

  --ff-head: 'Cormorant Garamond', 'Georgia', serif;
  --ff-body: 'Inter', 'Segoe UI', sans-serif;

  --nav-h: 72px;
  --mw:    1180px;
  --mwr:   760px;
}

/* â”€â”€ Keyframes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes pg-float    { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-7px) rotate(3deg);} }
@keyframes pg-wiggle   { 0%,100%{transform:rotate(0deg);} 25%{transform:rotate(-5deg);} 75%{transform:rotate(5deg);} }
@keyframes pg-pulse-dot{ 0%,100%{transform:translateY(-50%) scale(1);} 50%{transform:translateY(-50%) scale(1.3);} }
@keyframes pg-spin-slow{ from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.05ms !important; }
}

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(to right, rgba(18, 18, 18, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18, 18, 18, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
}
body::before {
  display: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--r-sm); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: var(--r-pill); border: 2px solid var(--bg-alt); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-d); }
::selection { background: var(--accent-t); color: var(--accent-d); }

/* â”€â”€ Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container   { max-width: var(--mw);  margin: 0 auto; padding: 0 1.5rem; }
.container-r { max-width: var(--mwr); margin: 0 auto; padding: 0 1.5rem; }

/* â”€â”€ Topbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.topbar {
  background: var(--ink); color: #f7f3e8;
  font-size: 0.8125rem; font-family: var(--ff-head); font-weight: 600;
  padding: 8px 0; border-bottom: var(--bw) solid var(--ink);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: var(--r-sm); background: transparent;
  border: 1px solid rgba(255,255,255,0.25); transition: background .15s, transform .15s;
}
.topbar-social a:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.topbar-social svg { width: 13px; height: 13px; fill: #f7f3e8; }
.topbar-tag { color: rgba(255,255,255,0.8); }

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  background: var(--bg-card); border-bottom: var(--bw) solid var(--ink);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: var(--nav-h);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--accent); display: grid; place-items: center; flex-shrink: 0;
  border: var(--bw) solid var(--ink);
  transition: transform .2s ease;
}
.logo-mark:hover { transform: translateY(-1px); }
.logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.logo-text { font-family: var(--ff-head); font-weight: 700; font-size: 1.375rem; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.logo-text span { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.main-nav a {
  font-family: var(--ff-head); font-weight: 700; font-size: 0.8125rem;
  color: var(--ink-soft); padding: 7px 13px; border-radius: var(--r-sm);
  border: 1px solid transparent; transition: all .15s; letter-spacing: .01em;
}
.main-nav a:hover { color: var(--accent); background: var(--accent-t); border-color: var(--accent); }
.main-nav a.active { color: var(--accent-d); background: var(--accent-t); border-color: var(--accent); }

.burger { display: none; flex-direction: column; gap: 5px; width: 32px; padding: 6px; }
.burger span { display: block; height: 3px; background: var(--ink); border-radius: var(--r-pill); transition: all .22s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; background: var(--bg); z-index: 999;
  padding: 5rem 1.5rem 2rem; display: none; flex-direction: column; gap: .375rem;
  background-image: radial-gradient(circle, #D6D3D1 1px, transparent 1px);
  background-size: 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.25rem;
  color: var(--ink); padding: 1rem 1.25rem; border-radius: var(--r-lg);
  border: 2px solid transparent; transition: all .15s;
}
.mobile-nav a:hover { color: var(--violet); background: var(--violet-l); border-color: var(--violet); transform: translateX(6px); }

/* â”€â”€ Category pill â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cat-pill {
  display: inline-block; font-family: var(--ff-head); font-weight: 800;
  font-size: 0.625rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); background: var(--yellow);
  padding: 4px 12px; border-radius: var(--r-pill);
  border: 2px solid var(--ink); box-shadow: 2px 2px 0 0 var(--ink);
}

/* â”€â”€ Section heading â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 2.5rem 0 1.5rem; flex-wrap: wrap; }
.section-head h2 {
  font-family: var(--ff-head); font-weight: 700; font-size: 1.5rem; color: var(--ink);
  position: relative; padding-left: 20px; letter-spacing: -0.01em;
}
.section-head h2::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; background: var(--accent); border: 1px solid var(--ink);
}
.section-head a {
  font-family: var(--ff-head); font-weight: 700; font-size: 0.875rem; color: var(--accent);
  border: 1px solid var(--accent); padding: 7px 18px; border-radius: var(--r-pill);
  background: var(--accent-t); transition: all .15s;
}
.section-head a:hover { background: var(--accent); color: #fff; }

/* â”€â”€ Hero featured â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-feat { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; margin: 2rem 0 2.5rem; }
.hero-feat-main {
  position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16/10;
  border: var(--bw) solid var(--ink); box-shadow: var(--shadow-xl);
  transition: transform .2s, box-shadow .2s;
}
.hero-feat-main:hover { transform: translate(-3px,-3px); box-shadow: 10px 10px 0 0 var(--ink); }
.hero-feat-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hero-feat-main:hover img { transform: scale(1.04); }
.hero-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,25,23,.9) 0%, rgba(28,25,23,.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem;
}
.hero-feat-overlay .cat-pill { width: fit-content; margin-bottom: .875rem; }
.hero-feat-overlay h2 {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(1.25rem, 2.4vw, 2rem); color: #fff; line-height: 1.2; letter-spacing: -0.02em;
}
.hero-feat-sub { display: flex; flex-direction: column; gap: 1.25rem; }

/* â”€â”€ Story card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.story-card { display: flex; flex-direction: column; }
.story-thumb {
  position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16/11;
  margin-bottom: .875rem; border: var(--bw) solid var(--ink); box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.story-card:hover .story-thumb { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.story-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.story-card:hover .story-thumb img { transform: scale(1.06); }
.story-thumb .cat-pill { position: absolute; top: 12px; left: 12px; }
.story-title { font-family: var(--ff-head); font-weight: 700; font-size: 0.9375rem; line-height: 1.35; color: var(--ink); transition: color .15s; }
.story-card:hover .story-title { color: var(--violet); }
.story-meta { font-size: 0.75rem; color: var(--muted); margin-top: .5rem; font-weight: 500; }

.story-row { display: flex; gap: .875rem; align-items: flex-start; cursor: pointer; }
.story-row-thumb { width: 90px; height: 68px; flex-shrink: 0; border-radius: var(--r-md); overflow: hidden; border: 2px solid var(--ink); box-shadow: var(--shadow-sm); }
.story-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.story-row-title { font-family: var(--ff-head); font-weight: 700; font-size: 0.875rem; line-height: 1.35; color: var(--ink); transition: color .15s; }
.story-row:hover .story-row-title { color: var(--violet); }

/* â”€â”€ 2-col layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.layout-2col { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }

/* â”€â”€ Sidebar widgets â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.widget {
  margin-bottom: 2rem; background: var(--bg-card);
  border: var(--bw) solid var(--ink); border-radius: var(--r-xl); box-shadow: var(--shadow-md); overflow: hidden;
  padding: 0;
}
.widget-head {
  font-family: var(--ff-head); font-weight: 800; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: .05em; color: #fff;
  background: var(--violet); padding: .875rem 1.25rem; border-bottom: var(--bw) solid var(--ink);
}
.widget-list { display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem; }
.widget-num-row { display: flex; gap: .875rem; align-items: flex-start; }
.widget-num { font-family: var(--ff-head); font-weight: 900; font-size: 1.25rem; color: var(--violet-l); -webkit-text-stroke: 2px var(--violet); flex-shrink: 0; line-height: 1; min-width: 22px; }
.widget-link { display: flex; flex-direction: column; gap: 2px; }
.widget-link a { font-family: var(--ff-head); font-weight: 700; font-size: 0.8125rem; color: var(--ink); line-height: 1.4; transition: color .15s; }
.widget-link a:hover { color: var(--violet); }

.widget-search { display: flex; border-top: var(--bw) solid var(--ink); padding: 1rem; gap: .625rem; }
.widget-search input {
  flex: 1; border: 2px solid var(--ink); padding: 9px 12px; font-size: 0.875rem;
  border-radius: var(--r-md); outline: none; background: var(--bg-alt); transition: border-color .15s;
}
.widget-search input:focus { border-color: var(--violet); }
.widget-search button {
  background: var(--yellow); color: var(--ink); border: 2px solid var(--ink);
  border-radius: var(--r-md); padding: 9px 16px; font-family: var(--ff-head);
  font-weight: 800; font-size: .8125rem; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s;
}
.widget-search button:hover { transform: translate(-1px,-1px); box-shadow: var(--shadow-md); }

.widget-cats { display: flex; flex-direction: column; padding: .5rem 1.25rem 1rem; }
.widget-cat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 0; border-bottom: 1.5px solid var(--border);
  font-family: var(--ff-head); font-weight: 700; font-size: 0.8125rem; color: var(--ink-soft);
  transition: color .15s, padding-left .15s;
}
.widget-cat-row:last-child { border-bottom: none; }
.widget-cat-row:hover { color: var(--violet); padding-left: 6px; cursor: pointer; }
.widget-cat-row .count { background: var(--violet-l); color: var(--violet-d); font-size: 0.625rem; font-weight: 800; padding: 3px 9px; border-radius: var(--r-pill); border: 1.5px solid var(--violet); }

.widget-ad-label { font-family: var(--ff-head); font-size: .625rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: center; padding: .5rem 0; }

/* â”€â”€ Post / article â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.post-breadcrumb { font-size: 0.8125rem; font-weight: 600; color: var(--muted); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 6px; }
.post-breadcrumb a:hover { color: var(--violet); }
.post-cat { margin-bottom: 1rem; }
.post-title { font-family: var(--ff-head); font-weight: 900; font-size: clamp(1.75rem, 3.4vw, 2.75rem); line-height: 1.15; color: var(--ink); letter-spacing: -0.025em; margin-bottom: 1.25rem; }
.post-meta { display: flex; align-items: center; gap: .75rem; font-size: 0.8125rem; font-weight: 600; color: var(--muted); margin-bottom: 1.75rem; flex-wrap: wrap; }
.post-meta .dot { width: 4px; height: 4px; background: var(--violet); border-radius: 50%; }
.post-hero-img { border-radius: var(--r-2xl); overflow: hidden; margin-bottom: 2rem; aspect-ratio: 16/9; border: var(--bw) solid var(--ink); box-shadow: var(--shadow-xl); }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-body { font-size: 1.0625rem; line-height: 1.85; color: var(--ink-soft); }
.post-body p { margin-bottom: 1.5rem; }
.post-body h2 { font-family: var(--ff-head); font-weight: 900; font-size: 1.625rem; color: var(--ink); margin: 2.5rem 0 1rem; letter-spacing: -0.02em; padding-left: 1rem; border-left: 4px solid var(--violet); }
.post-body h3 { font-family: var(--ff-head); font-weight: 800; font-size: 1.25rem; color: var(--ink); margin: 2rem 0 .75rem; letter-spacing: -0.015em; }
.post-body ul, .post-body ol { margin: 0 0 1.5rem 1.25rem; }
.post-body li { margin-bottom: .625rem; }
.post-body blockquote { border: var(--bw) solid var(--violet); border-left: 6px solid var(--violet); background: var(--violet-l); padding: 1.25rem 1.5rem; margin: 2rem 0; border-radius: var(--r-lg); box-shadow: var(--shadow-violet); }
.post-body blockquote p { font-family: var(--ff-head); font-style: italic; color: var(--violet-d); font-size: 1.125rem; margin-bottom: 0; font-weight: 600; }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }

.post-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0; padding-top: 1.5rem; border-top: 2px solid var(--border); }
.post-tag { font-family: var(--ff-head); font-size: 0.75rem; font-weight: 700; color: var(--ink); background: var(--yellow-l); padding: 5px 14px; border-radius: var(--r-pill); border: 2px solid var(--ink); box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.post-tag:hover { background: var(--yellow); transform: translate(-1px,-1px); box-shadow: var(--shadow-md); }

.post-share { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; padding: 1.25rem 0; border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); }
.post-share span { font-family: var(--ff-head); font-weight: 800; font-size: 0.8125rem; text-transform: uppercase; color: var(--ink); margin-right: .25rem; letter-spacing: .04em; }
.share-btn { width: 38px; height: 38px; border-radius: var(--r-md); background: var(--bg-alt); border: 2px solid var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, background .15s; }
.share-btn svg { width: 16px; height: 16px; fill: var(--ink-soft); }
.share-btn:hover { background: var(--violet); transform: translate(-2px,-2px); box-shadow: var(--shadow-md); }
.share-btn:hover svg { fill: #fff; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }
.post-nav-item { border: var(--bw) solid var(--ink); border-radius: var(--r-xl); padding: 1.25rem 1.5rem; background: var(--bg-card); box-shadow: var(--shadow-md); transition: transform .2s, box-shadow .2s, background .15s; }
.post-nav-item:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-xl); background: var(--violet-l); }
.post-nav-item .dir { font-family: var(--ff-head); font-size: 0.625rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--violet); margin-bottom: 5px; display: block; }
.post-nav-item .ttl { font-family: var(--ff-head); font-weight: 700; font-size: 0.9375rem; color: var(--ink); line-height: 1.3; }
.post-nav-item.next { text-align: right; }
.in-article-ad { margin: 2rem 0; }

/* â”€â”€ Category filter â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cat-filter-row { display: flex; gap: .625rem; flex-wrap: wrap; margin: 1.5rem 0 2rem; }
.cat-filter-btn { font-family: var(--ff-head); font-weight: 700; font-size: 0.8125rem; padding: 8px 18px; border-radius: var(--r-pill); border: 2px solid var(--ink); color: var(--ink); background: var(--bg-card); box-shadow: var(--shadow-sm); transition: all .15s; }
.cat-filter-btn:hover { background: var(--violet-l); border-color: var(--violet); color: var(--violet); transform: translateY(-2px); box-shadow: var(--shadow-violet); }
.cat-filter-btn.active { background: var(--violet); border-color: var(--violet-d); color: #fff; box-shadow: var(--shadow-violet); transform: translateY(-2px); }

/* â”€â”€ Load more â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.load-more-wrap { text-align: center; margin: 2.5rem 0; }
.btn-loadmore { font-family: var(--ff-head); font-weight: 800; font-size: 0.9375rem; letter-spacing: .02em; color: var(--ink); background: var(--yellow); border: var(--bw) solid var(--ink); padding: 14px 36px; border-radius: var(--r-pill); box-shadow: var(--shadow-md); transition: transform .15s, box-shadow .15s; display: inline-block; }
.btn-loadmore:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-xl); }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--ff-head); font-weight: 700; font-size: 0.9375rem; padding: 12px 28px; border-radius: var(--r-md); border: var(--bw) solid var(--ink); transition: background .15s, color .15s, transform .15s; letter-spacing: .01em; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-d); }
.btn-outline { background: var(--bg-card); color: var(--ink); }
.btn-outline:hover { background: var(--accent-t); }
.btn-full { width: 100%; }

/* â”€â”€ Page hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero { padding: 3.5rem 0 3rem; text-align: center; border-bottom: var(--bw) solid var(--border); position: relative; overflow: hidden; }
.page-hero::before,
.page-hero::after {
  display: none;
}
.page-hero h1 { font-family: var(--ff-head); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.5rem); color: var(--ink); letter-spacing: -0.03em; margin-bottom: .875rem; line-height: 1.1; position: relative; z-index: 1; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { font-size: 1.125rem; color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.7; position: relative; z-index: 1; }

/* â”€â”€ Simple sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.simple-section { padding: 3rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img { border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/3; border: var(--bw) solid var(--ink); box-shadow: var(--shadow-xl); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--ff-head); font-weight: 900; font-size: 1.875rem; color: var(--ink); margin-bottom: 1rem; letter-spacing: -0.025em; }
.about-text p { margin-bottom: 1rem; line-height: 1.8; color: var(--ink-soft); }

.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.value-box { border: var(--bw) solid var(--ink); border-radius: var(--r-xl); padding: 2rem 1.5rem; text-align: center; background: var(--bg-card); box-shadow: var(--shadow-md); transition: transform .2s, box-shadow .2s; }
.value-box:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-xl); }
.value-box:nth-child(1) { background: var(--yellow-l); }
.value-box:nth-child(2) { background: var(--violet-l); }
.value-box:nth-child(3) { background: var(--mint-l); }
.value-box .icon { font-size: 2rem; margin-bottom: 1rem; display: block; animation: pg-wiggle 3s ease-in-out infinite; }
.value-box:nth-child(2) .icon { animation-delay: .5s; }
.value-box:nth-child(3) .icon { animation-delay: 1s; }
.value-box h3 { font-family: var(--ff-head); font-weight: 800; font-size: 1rem; color: var(--ink); margin-bottom: .5rem; }
.value-box p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; }

.team-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.team-box { text-align: center; background: var(--bg-card); border: var(--bw) solid var(--ink); border-radius: var(--r-2xl); padding: 2rem 1.5rem; box-shadow: var(--shadow-md); transition: transform .2s, box-shadow .2s; }
.team-box:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-xl); }
.team-photo { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; border: var(--bw) solid var(--ink); box-shadow: var(--shadow-sm); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-box h4 { font-family: var(--ff-head); font-weight: 800; font-size: 1rem; color: var(--ink); }
.team-box .role { font-family: var(--ff-head); font-size: 0.75rem; font-weight: 700; color: var(--violet); display: block; margin: 3px 0 .625rem; text-transform: uppercase; letter-spacing: .04em; }
.team-box p { font-size: 0.8125rem; color: var(--muted); line-height: 1.65; }

/* â”€â”€ Contact â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 2.5rem; align-items: start; }
.contact-info-box { background: var(--violet-l); border: var(--bw) solid var(--ink); border-radius: var(--r-2xl); padding: 2rem; box-shadow: var(--shadow-lg); }
.contact-info-item { padding: 1rem 0; border-bottom: 2px solid rgba(28,25,23,.1); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .label { font-family: var(--ff-head); font-size: 0.625rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--violet-d); display: block; margin-bottom: 4px; }
.contact-info-item .value { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; color: var(--ink); }
.contact-info-item .value a:hover { color: var(--violet); }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.fg { margin-bottom: 1.25rem; }
.fg label { font-family: var(--ff-head); font-weight: 700; font-size: 0.8125rem; color: var(--ink); display: block; margin-bottom: 7px; letter-spacing: .01em; }
.fg input, .fg select, .fg textarea { width: 100%; border: var(--bw) solid var(--ink); border-radius: var(--r-lg); padding: 12px 16px; font-size: 0.9375rem; color: var(--ink); outline: none; background: var(--bg-card); box-shadow: var(--shadow-sm); transition: border-color .15s, box-shadow .15s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--violet); box-shadow: var(--shadow-violet); }
.fg textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.fcb-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.5rem; }
.fcb-row input { margin-top: 3px; }
.fcb-row label { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.fcb-row a { color: var(--violet); text-decoration: underline; font-weight: 600; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success.show { display: block; }
.form-success .ico { width: 64px; height: 64px; border-radius: 50%; background: var(--mint); color: #fff; display: grid; place-items: center; font-size: 1.75rem; margin: 0 auto 1.25rem; border: var(--bw) solid var(--ink); box-shadow: var(--shadow-md); }
.form-success h3 { font-family: var(--ff-head); font-weight: 900; font-size: 1.5rem; color: var(--ink); margin-bottom: .5rem; }

/* â”€â”€ Newsletter band â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.newsletter-band {
  background: var(--bg-card); border: var(--bw) solid var(--ink); border-radius: var(--r-md);
  padding: 2.75rem; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin: 3rem 0; position: relative; overflow: hidden;
}
.newsletter-band::before,
.newsletter-band::after {
  display: none;
}
.newsletter-band h3 { font-family: var(--ff-head); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin-bottom: .375rem; letter-spacing: -0.02em; }
.newsletter-band p { font-size: 0.9375rem; color: var(--muted); }
.newsletter-form-inline { display: flex; gap: 0; min-width: 320px; border: var(--bw) solid var(--ink); border-radius: var(--r-md); overflow: hidden; }
.newsletter-form-inline input { flex: 1; border: none; padding: 0 18px; font-size: 0.9375rem; outline: none; font-family: var(--ff-body); background: #fff; }
.newsletter-form-inline button { background: var(--accent); color: #fff; font-family: var(--ff-head); font-weight: 700; padding: 14px 22px; border: none; border-left: var(--bw) solid var(--ink); font-size: 0.875rem; text-transform: uppercase; letter-spacing: .03em; transition: background .15s; }
.newsletter-form-inline button:hover { background: var(--accent-d); }

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-item { border: var(--bw) solid var(--border); border-radius: var(--r-xl); margin-bottom: .75rem; background: var(--bg-card); overflow: hidden; transition: border-color .15s; }
.faq-item:hover { border-color: var(--violet); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; text-align: left; gap: 1rem; }
.faq-trigger-t { font-family: var(--ff-head); font-weight: 700; font-size: 0.9375rem; color: var(--ink); }
.faq-trigger:hover .faq-trigger-t { color: var(--violet); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--yellow-l); border: 2px solid var(--ink); display: grid; place-items: center; font-size: 1rem; color: var(--ink); flex-shrink: 0; transition: transform .2s, background .2s; font-weight: 800; font-family: var(--ff-head); box-shadow: var(--shadow-sm); }
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--violet); color: #fff; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-inner { padding: 1rem 1.5rem 1.25rem; font-size: 0.9375rem; color: var(--muted); line-height: 1.8; border-top: 1.5px solid var(--border); }

/* â”€â”€ Legal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal-body h2 { font-family: var(--ff-head); font-weight: 800; font-size: 1.25rem; color: var(--ink); margin: 2.5rem 0 1rem; padding-left: 1rem; border-left: 4px solid var(--yellow); }
.legal-body p, .legal-body li { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: .875rem; }
.legal-body ul { padding-left: 1.25rem; }
.legal-body a { color: var(--violet); text-decoration: underline; font-weight: 600; }
.legal-body strong { color: var(--ink); font-weight: 700; }

/* â”€â”€ Cookie â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cookie-bar {
  position: fixed; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  max-width: 780px; margin: 0 auto;
  background: var(--ink); color: #fff; padding: 1.25rem 1.5rem; z-index: 9000;
  display: none; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  border-radius: var(--r-xl); border: var(--bw) solid rgba(255,255,255,.2); box-shadow: var(--shadow-xl);
}
.cookie-bar.on { display: flex; }
.cookie-bar p { flex: 1; font-size: 0.875rem; color: rgba(255,255,255,.8); min-width: 220px; line-height: 1.6; }
.cookie-bar a { color: var(--yellow); text-decoration: underline; }
.cookie-bar-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-bar-btns button { font-family: var(--ff-head); font-weight: 800; font-size: 0.8125rem; text-transform: uppercase; padding: 10px 20px; border-radius: var(--r-lg); transition: all .15s; }
.cb-accept { background: var(--yellow); color: var(--ink); border: 2px solid var(--yellow); box-shadow: var(--shadow-yellow); }
.cb-accept:hover { background: var(--yellow-l); }
.cb-reject { background: transparent; color: rgba(255,255,255,.8); border: 2px solid rgba(255,255,255,.3); }
.cb-reject:hover { background: rgba(255,255,255,.1); color: #fff; }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); margin-top: 4rem; border-top: var(--bw) solid rgba(255,255,255,.1); position: relative; overflow: hidden; }
.site-footer::before { display: none; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; padding: 3.5rem 0; border-bottom: 1.5px solid rgba(255,255,255,.1); }
.footer-col h4 { font-family: var(--ff-head); font-weight: 800; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: .06em; color: var(--yellow); margin-bottom: 1.25rem; }
.footer-col p { font-size: 0.9375rem; line-height: 1.7; max-width: 26ch; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: 0.9375rem; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; flex-wrap: wrap; gap: .75rem; font-size: 0.8125rem; font-family: var(--ff-head); font-weight: 600; }
.footer-bottom a { transition: color .15s; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* â”€â”€ Ad system â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ad-slot {
  position: relative;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}
.ad-slot-label {
  display: none;
}
.widget-ad-label {
  display: none;
}
.ad-slot-inner {
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-slot[data-ad-loaded="true"] {
  display: flex;
  border: none;
  background: transparent;
}
.ad-slot[data-ad-format="leaderboard"],
.ad-slot[data-ad-format="native"] {
  margin: 1.5rem auto;
}
.ad-slot[data-ad-format="mpu"],
.ad-slot[data-ad-format="skyscraper"],
.ad-slot[data-ad-format="mobile-banner"] {
  margin: 1rem auto;
}

.native-ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  width: 100%;
  justify-items: center;
  align-items: start;
}

.native-ad-grid .ad-container {
  width: 100%;
}

.ad-slot[data-ad-format="leaderboard"] {
  width: 100%;
  max-width: 1094.4px;
  min-height: 260px;
  margin: 3rem auto;
}
.ad-slot[data-ad-format="native"] {
  width: 100%;
  max-width: 1094.4px;
  min-height: 260px;
  margin: 3rem 0;
}
.ad-slot[data-ad-format="mpu"] {
  width: 300px;
  max-width: 100%;
  min-height: 250px;
  margin: 2.5rem auto;
}
.ad-slot[data-ad-format="skyscraper"] {
  width: 160px;
  max-width: 100%;
  min-height: 600px;
  margin: 2rem auto;
}
.ad-slot[data-ad-format="mobile-banner"] {
  width: 320px;
  max-width: 100%;
  min-height: 50px;
  margin: 1.75rem auto;
}
.ad-slot[data-ad-format="mpu"],
.ad-slot[data-ad-format="skyscraper"] {
  padding: 0.75rem;
}
.ad-slot[data-ad-format="native"] {
  padding: 1.25rem;
}
.ad-slot[data-ad-format="leaderboard"] {
  padding: 0.85rem;
}
.ad-slot[data-ad-format="mobile-banner"] {
  padding: 0.5rem;
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .layout-2col { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-feat { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .story-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hero-feat-sub { flex-direction: column; }
  .about-grid, .contact-wrap, .form-row { grid-template-columns: 1fr; }
  .values-row, .team-row { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .newsletter-band { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .newsletter-form-inline { width: 100%; min-width: 0; }
  .ad-slot[data-ad-format="skyscraper"] { display: none; }
  .topbar-tag { display: none; }
  .page-hero::before, .page-hero::after { display: none; }
}
@media (max-width: 480px) {
  .story-grid { grid-template-columns: 1fr; }
  .cat-filter-btn { font-size: 0.75rem; padding: 7px 14px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOMEPAGE â€” tipsatelier-style editorial layout
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Editorial Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-hero {
  padding: 3.5rem 0 3rem;
  border-bottom: var(--bw) solid var(--border);
  background: var(--bg-card);
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.home-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 800;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--violet); background: var(--violet-l);
  padding: 6px 16px; border-radius: var(--r-pill);
  border: 2px solid var(--violet);
  box-shadow: var(--shadow-violet);
  margin-bottom: 1.25rem;
}
.home-hero-title {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.08; letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 1.25rem;
}
.home-hero-title span { color: var(--violet); }
.home-hero-desc {
  font-size: 1.0625rem; color: var(--muted); line-height: 1.78;
  margin-bottom: 2rem; max-width: 44ch;
}
.home-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero thumbnail grid (4 images) */
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.home-hero-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: var(--bw) solid var(--ink); box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block; cursor: pointer;
}
.home-hero-card:first-child {
  grid-column: span 2;
}
.home-hero-card:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); }
.home-hero-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  display: block; transition: transform 0.4s;
}
.home-hero-card:first-child img { aspect-ratio: 16/8; }
.home-hero-card:hover img { transform: scale(1.04); }
.home-hero-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,25,23,0.78) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem;
}
.home-hero-card-title {
  font-family: var(--ff-head); font-weight: 800;
  font-size: 0.875rem; color: #fff; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* â”€â”€ Section label + title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-section-label {
  font-family: var(--ff-head); font-weight: 700;
  font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.625rem;
}
.home-section-title {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  color: var(--ink); letter-spacing: -0.025em; line-height: 1.18;
  margin-bottom: 2.5rem;
}

/* â”€â”€ Category section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-cats-section {
  padding: 4rem 0;
  border-bottom: var(--bw) solid var(--border);
  background: var(--bg-alt);
}
.home-cat-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.home-cat-card {
  background: var(--bg-card);
  border: var(--bw) solid var(--ink);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block; cursor: pointer;
  text-decoration: none;
}
.home-cat-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-xl); }
.home-cat-card:nth-child(1) { background: var(--violet-l); }
.home-cat-card:nth-child(2) { background: var(--pink-l);   }
.home-cat-card:nth-child(3) { background: var(--yellow-l); }
.home-cat-card:nth-child(4) { background: var(--mint-l);   }
.home-cat-card:nth-child(5) { background: var(--sky-l);    }
.home-cat-card:nth-child(6) { background: var(--pink-l);   }
.home-cat-icon {
  font-size: 2.25rem; margin-bottom: 0.875rem;
  display: block;
  animation: pg-wiggle 3s ease-in-out infinite;
}
.home-cat-card:nth-child(2) .home-cat-icon { animation-delay: 0.3s; }
.home-cat-card:nth-child(3) .home-cat-icon { animation-delay: 0.6s; }
.home-cat-card:nth-child(4) .home-cat-icon { animation-delay: 0.9s; }
.home-cat-card:nth-child(5) .home-cat-icon { animation-delay: 1.2s; }
.home-cat-card:nth-child(6) .home-cat-icon { animation-delay: 1.5s; }
.home-cat-name {
  font-family: var(--ff-head); font-weight: 800;
  font-size: 0.875rem; color: var(--ink);
  line-height: 1.25;
}
.home-cat-count {
  font-family: var(--ff-head); font-size: 0.6875rem; font-weight: 700;
  color: var(--muted); margin-top: 4px;
}

/* â”€â”€ Shelf rows (2 articles per category) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-shelf-section {
  padding: 4rem 0;
  border-bottom: var(--bw) solid var(--border);
}
.home-shelf-row {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 2px solid var(--border);
}
.home-shelf-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.home-shelf-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem;
}
.home-shelf-cat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 800;
  font-size: 0.8125rem; letter-spacing: 0.04em;
  color: var(--ink); background: var(--yellow);
  padding: 7px 18px; border-radius: var(--r-pill);
  border: 2px solid var(--ink); box-shadow: var(--shadow-sm);
}
.home-shelf-link {
  font-family: var(--ff-head); font-weight: 700; font-size: 0.8125rem;
  color: var(--violet); border: 2px solid var(--violet);
  padding: 6px 16px; border-radius: var(--r-pill);
  background: var(--violet-l); box-shadow: var(--shadow-violet);
  transition: all 0.15s;
}
.home-shelf-link:hover { background: var(--violet); color: #fff; transform: translate(-2px,-2px); box-shadow: var(--shadow-xl); }
.home-shelf-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.home-shelf-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--bg-card);
  border: var(--bw) solid var(--ink);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; text-decoration: none;
}
.home-shelf-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-xl); }
.home-shelf-thumb {
  width: 110px; height: 82px; flex-shrink: 0;
  border-radius: var(--r-md); overflow: hidden;
  border: 2px solid var(--ink);
}
.home-shelf-thumb img { width: 100%; height: 100%; object-fit: cover; }
.home-shelf-info { flex: 1; min-width: 0; }
.home-shelf-meta {
  font-size: 0.6875rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.375rem;
}
.home-shelf-title {
  font-family: var(--ff-head); font-weight: 800;
  font-size: 0.9375rem; line-height: 1.32; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.15s;
}
.home-shelf-card:hover .home-shelf-title { color: var(--violet); }

/* â”€â”€ Featured + Latest sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-featured-section {
  padding: 4rem 0;
  border-bottom: var(--bw) solid var(--border);
  background: var(--bg-alt);
}
.home-latest-section { padding: 4rem 0; border-bottom: var(--bw) solid var(--border); }

/* â”€â”€ Newsletter section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.home-newsletter-section { padding: 4rem 0; }
.home-nl-left { flex: 1; }
.home-nl-title {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: #fff; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 0.875rem;
}
.home-nl-desc { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.home-nl-right { flex-shrink: 0; min-width: 320px; }
.home-nl-note {
  font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin-top: 0.875rem;
  font-family: var(--ff-head); font-weight: 600;
}

/* â”€â”€ Responsive homepage additions â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
  .home-cat-strip { grid-template-columns: repeat(3, 1fr); }
  .home-hero-inner { grid-template-columns: 1fr; }
  .home-hero-grid { grid-template-columns: repeat(3, 1fr); }
  .home-hero-card:first-child { grid-column: span 3; }
}
@media (max-width: 768px) {
  .home-hero { padding: 2rem 0; }
  .home-cat-strip { grid-template-columns: repeat(2, 1fr); }
  .home-shelf-cards { grid-template-columns: 1fr; }
  .home-hero-grid { grid-template-columns: 1fr 1fr; }
  .home-hero-card:first-child { grid-column: span 2; }
  .home-nl-right { min-width: 0; width: 100%; }
}
@media (max-width: 480px) {
  .home-cat-strip { grid-template-columns: 1fr 1fr; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-card:first-child { grid-column: span 1; }
}

