/* ============================================================
   IDareYou.in — Main Stylesheet
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --black:  #0a0a0a;
  --void:   #111114;
  --card:   #18181d;
  --card2:  #1e1e24;
  --border: #2a2a32;
  --fire:   #ff3c00;
  --ember:  #ff7a1a;
  --gold:   #ffd84d;
  --white:  #f5f0e8;
  --muted:  #888890;
  --green:  #22c55e;
  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'Bricolage Grotesque', sans-serif;
  --r:      12px;
  --max:    1160px;
  --trans:  .22s ease;
}

/* ===== BASE ===== */
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 5vw; }

/* ===== AD BANNERS ===== */
.ad-banner { text-align: center; padding: 8px 5vw; background: var(--black); border-bottom: 1px solid var(--border); }
.ad-mid    { padding: 24px 5vw; text-align: center; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; user-select: none; }
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-icon svg { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-d); font-size: 26px; letter-spacing: 2px; color: var(--white); }
.logo-dot  { font-family: var(--font-d); font-size: 13px; letter-spacing: 4px; color: var(--fire); }

/* NAV */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta { background: var(--fire) !important; color: #fff !important; }
.nav-cta:hover { opacity: .88; background: var(--fire) !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== SECTION HELPERS ===== */
.section       { position: relative; z-index: 1; padding: 80px 5vw; }
.section-dark  { background: var(--black); }
.section-label {
  text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; color: var(--fire); text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  text-align: center; font-family: var(--font-d);
  font-size: clamp(32px,5vw,60px); letter-spacing: 1px; line-height: 1;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center; color: var(--muted); font-size: 16px; max-width: 560px;
  margin: 0 auto 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; border: none;
  font-family: var(--font-b); font-size: 15px; font-weight: 700;
  transition: all var(--trans); letter-spacing: .2px;
}
.btn-fire {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  color: #fff; box-shadow: 0 4px 24px rgba(255,60,0,.3);
}
.btn-fire:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,60,0,.5); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: var(--muted); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { opacity: .88; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative; z-index: 1;
  min-height: 90vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 5vw 60px; overflow: hidden;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,60,0,.18) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.08); opacity: .7; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,60,0,.12); border: 1px solid rgba(255,60,0,.3);
  color: var(--ember); font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}
.hero h1 {
  font-family: var(--font-d); font-size: clamp(72px,12vw,160px);
  line-height: .92; letter-spacing: -1px; color: var(--white);
  animation: fadeUp .7s .1s ease both;
}
.hero h1 .fire { 
  background: linear-gradient(135deg, var(--fire), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  max-width: 560px; font-size: 18px; font-weight: 300; color: var(--muted);
  margin: 24px auto 40px; animation: fadeUp .7s .2s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .7s .3s ease both;
}
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; justify-content: center; animation: fadeUp .7s .4s ease both; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-d); font-size: 36px; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--white), var(--muted));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== DARE GENERATOR BOX ===== */
.generator-box {
  max-width: 740px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; justify-content: center; }
.tab {
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--border); background: transparent; color: var(--muted);
  transition: all var(--trans); font-family: var(--font-b);
}
.tab.active, .tab:hover { background: var(--fire); color: #fff; border-color: var(--fire); }
.dare-output {
  background: var(--void); border: 1px solid var(--border); border-radius: 14px;
  min-height: 130px; display: flex; align-items: center; justify-content: center;
  padding: 28px; margin-bottom: 24px; position: relative; overflow: hidden;
}
.dare-output::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--fire), var(--ember));
  border-radius: 4px 0 0 4px;
}
.dare-text { font-size: 20px; font-weight: 600; text-align: center; line-height: 1.5; transition: opacity .25s; }
.dare-text.fading { opacity: 0; }
.dare-emoji { font-size: 40px; display: block; margin-bottom: 10px; }
.gen-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ===== CATEGORY GRID ===== */
.cats-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 16px;
}
.cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 20px; text-align: center;
  transition: all .25s; display: block; position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--fire), var(--ember));
  opacity: 0; transition: opacity .25s; z-index: 0;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--fire); }
.cat-card:hover::after { opacity: .08; }
.cat-card > * { position: relative; z-index: 1; }
.cat-emoji { font-size: 38px; margin-bottom: 10px; }
.cat-name  { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--muted); }

/* ===== DARE CARDS ===== */
.dare-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px;
}
.dare-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px; transition: all .25s;
}
.dare-card:hover { transform: translateY(-3px); border-color: rgba(255,60,0,.4); box-shadow: 0 8px 32px rgba(255,60,0,.1); }
.dare-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--fire); background: rgba(255,60,0,.1);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
}
.dare-card h3 { font-size: 15px; font-weight: 600; line-height: 1.55; margin-bottom: 16px; }
.dare-card-foot { display: flex; align-items: center; justify-content: space-between; }
.difficulty { display: flex; gap: 3px; align-items: center; }
.diff-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.diff-dot.on { background: var(--fire); }
.share-wa {
  font-size: 12px; font-weight: 700; color: var(--muted); background: none; border: none;
  display: flex; align-items: center; gap: 5px; transition: color var(--trans);
  font-family: var(--font-b);
}
.share-wa:hover { color: var(--white); }

/* ===== BLOG CARDS ===== */
.blog-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 24px;
}
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all .25s; display: block; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,60,0,.3); }
.blog-thumb { height: 160px; background: linear-gradient(135deg,#1a1a20,#222); display: flex; align-items: center; justify-content: center; font-size: 60px; border-bottom: 1px solid var(--border); }
.blog-body { padding: 20px; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--fire); text-transform: uppercase; margin-bottom: 8px; }
.blog-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===== TRUTH OR DARE PAGE ===== */
.tod-box {
  max-width: 740px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.tod-toggle { display: flex; gap: 0; margin-bottom: 32px; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--border); }
.tod-btn {
  flex: 1; padding: 14px; font-size: 16px; font-weight: 800; background: transparent;
  border: none; color: var(--muted); transition: all var(--trans); font-family: var(--font-b);
}
.tod-btn.active { background: var(--fire); color: #fff; }
.tod-output {
  background: var(--void); border: 1px solid var(--border); border-radius: 14px;
  min-height: 140px; display: flex; align-items: center; justify-content: center;
  padding: 32px; text-align: center; margin-bottom: 24px; position: relative;
}
.tod-output::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  border-radius: 4px 0 0 4px;
}
.tod-output.truth::before { background: var(--green); }
.tod-output.dare::before  { background: var(--fire); }
.tod-output-text { font-size: 20px; font-weight: 600; line-height: 1.5; transition: opacity .25s; }
.tod-output-text.fading { opacity: 0; }

/* ===== WHATSAPP PAGE ===== */
.wa-message-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; transition: all .25s;
}
.wa-message-card:hover { border-color: rgba(34,197,94,.3); }
.wa-bubble {
  background: #1a3e27; border-radius: 0 12px 12px 12px;
  padding: 12px 16px; flex: 1; font-size: 14px; line-height: 1.65;
}
.wa-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.wa-grid { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 12px 5vw; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 8px; justify-content: center; padding: 40px 0; }
.page-btn {
  width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border); font-size: 14px; font-weight: 700;
  color: var(--muted); transition: all var(--trans);
}
.page-btn.active, .page-btn:hover { background: var(--fire); border-color: var(--fire); color: #fff; }

/* ===== BLOG POST ===== */
.post-wrap {
  display: grid;
  grid-template-columns: 1fr min(720px, 100%) 1fr;
  padding: 0 5vw 80px;
}
.post-wrap > * { grid-column: 2; }
.post-wrap .post-wide { grid-column: 1 / -1; }

.post-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a0800, var(--black));
  border-bottom: 1px solid var(--border);
  padding: 60px 5vw 48px;
  text-align: center;
  margin-bottom: 48px;
}
.post-hero .blog-cat { margin-bottom: 16px; }
.post-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.post-meta {
  display: flex; gap: 20px; align-items: center; justify-content: center;
  flex-wrap: wrap; font-size: 13px; color: var(--muted);
}
.post-meta span { display: flex; align-items: center; gap: 5px; }

.post-body { padding: 0 0 40px; }
.post-body h2 {
  font-family: var(--font-d); font-size: clamp(24px, 3vw, 36px);
  margin: 48px 0 16px; letter-spacing: .5px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.post-body h3 { font-size: 19px; font-weight: 700; margin: 32px 0 12px; color: var(--white); }
.post-body p  { color: var(--muted); margin-bottom: 18px; line-height: 1.85; font-size: 16px; }
.post-body ul, .post-body ol { color: var(--muted); margin: 0 0 20px 0; padding-left: 0; list-style: none; }
.post-body ol { counter-reset: post-counter; }
.post-body ol li {
  counter-increment: post-counter; position: relative;
  padding: 10px 14px 10px 52px; margin-bottom: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; line-height: 1.65; font-size: 15px;
}
.post-body ol li::before {
  content: counter(post-counter);
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--fire); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
}
.post-body ul li {
  padding: 8px 14px 8px 36px; position: relative; margin-bottom: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; line-height: 1.65; font-size: 15px;
}
.post-body ul li::before {
  content: '→'; position: absolute; left: 12px;
  color: var(--fire); font-weight: 700;
}
.post-body strong { color: var(--white); font-weight: 700; }
.post-body a { color: var(--fire); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { opacity: .8; }

.post-cta {
  background: linear-gradient(135deg, rgba(255,60,0,.12), rgba(255,122,26,.08));
  border: 1px solid rgba(255,60,0,.3); border-radius: 14px;
  padding: 28px 32px; margin: 40px 0; text-align: center;
}
.post-cta h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.post-cta p  { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

.post-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ===== STATIC PAGES ===== */
.page-body { max-width: 720px; margin: 0 auto; padding: 60px 5vw; }
.page-body h1 { font-family: var(--font-d); font-size: 48px; margin-bottom: 24px; }
.page-body h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.page-body p  { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.page-body a  { color: var(--fire); }
.page-body ul { color: var(--muted); margin: 0 0 16px 24px; }
.page-body li { margin-bottom: 6px; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  color: var(--white); font-family: var(--font-b); font-size: 15px;
  padding: 12px 16px; transition: border-color var(--trans); outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--fire); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-msg { font-size: 14px; padding: 12px 16px; border-radius: 8px; text-align: center; }
.form-msg.success { background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3); color: var(--green); }
.form-msg.error   { background: rgba(255,60,0,.15); border: 1px solid rgba(255,60,0,.3); color: var(--fire); }

/* ===== FOOTER ===== */
.site-footer { position: relative; z-index: 1; background: var(--black); border-top: 1px solid var(--border); padding: 60px 5vw 30px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about { font-size: 13px; color: var(--muted); margin-top: 14px; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all var(--trans); }
.footer-social a:hover { color: var(--white); border-color: var(--fire); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h3 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color var(--trans); }
.footer-col a:hover { color: var(--white); }
.footer-seo { padding-top: 30px; border-top: 1px solid var(--border); margin-top: 10px; }
.footer-seo h2 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.footer-seo p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-bottom { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); animation: bounce 3s 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ===== UTILITY ===== */
.text-fire { color: var(--fire); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(10,10,10,.97); border-bottom: 1px solid var(--border);
    padding: 16px 5vw;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .hero h1 { font-size: clamp(56px, 16vw, 100px); }
  .hero-stats { gap: 24px; }
  .generator-box { padding: 24px 16px; }
  .tod-box { padding: 24px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { margin-bottom: 8px; }
  .dare-grid { grid-template-columns: 1fr; }
  /* Blog post mobile */
  .post-wrap { grid-template-columns: 1fr; padding: 0 5vw 60px; }
  .post-wrap > * { grid-column: 1; }
  .post-wrap .post-wide { grid-column: 1; }
  .post-hero { padding: 40px 5vw 32px; }
  .post-body ol li, .post-body ul li { font-size: 14px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 5vw; }
  .blog-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}
