/* =============================================
   FREE PARLAY PICKS — Swiss Grid + Space Grotesk
   ============================================= */

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

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-accent: #000000;
  --c-gray-1: #111111;
  --c-gray-2: #333333;
  --c-gray-3: #666666;
  --c-gray-4: #999999;
  --c-gray-5: #cccccc;
  --c-gray-6: #eeeeee;
  --c-gray-7: #f5f5f5;
  --c-ink: #000000;
  --c-bg: #ffffff;
  --c-border: #000000;
  --radius: 0;
  --gap: 1rem;
  --base: 8px;
  --col: calc((100% - 11 * var(--gap)) / 12);
  --max-w: 1280px;
  --reading-w: 720px;
  --font: 'Space Grotesk', Helvetica, Arial, sans-serif;
}

html {
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); text-transform: uppercase; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; font-size: 1rem; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-black); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration: none; opacity: 0.75; }

small {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gray-3);
  display: block;
  margin-bottom: 0.25rem;
}

/* --- Site wrapper --- */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-black);
  color: var(--c-white);
  border-bottom: 2px solid var(--c-white);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 56px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
  white-space: nowrap;
}

.brand-mark img {
  display: block;
  width: 32px;
  height: 32px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.primary-nav::-webkit-scrollbar { display: none; }

.primary-nav a {
  color: var(--c-white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0 0.75rem;
  height: 56px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s;
}
.primary-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.12); }
.primary-nav a:hover { background: rgba(255,255,255,0.1); }

/* --- CTA Buttons --- */
.header-cta {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.25rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.cta-signup {
  background: var(--c-white);
  color: var(--c-black);
  border: 2px solid var(--c-white);
}
.cta-signup:hover {
  background: var(--c-gray-6);
  color: var(--c-black);
  opacity: 1;
}

.cta-login {
  background: transparent;
  color: var(--c-white);
  border: 2px solid var(--c-white);
}
.cta-login:hover {
  background: var(--c-white);
  color: var(--c-black);
  opacity: 1;
}

/* =============================================
   HERO (Home)
   ============================================= */
.hero-section {
  position: relative;
  background: var(--c-black);
  color: var(--c-white);
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: var(--c-black);
  z-index: 0;
}

.hero-collage {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 1;
}

.hero-img {
  object-fit: cover;
  width: 50%;
  height: 100%;
  opacity: 0.35;
}

.hero-img-1 {
  transform: translateX(-2%);
}

.hero-img-2 {
  transform: translateX(2%) translateY(8%);
  opacity: 0.2;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gray-5);
  margin-bottom: 0;
}

.hero-h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-slant {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--c-white);
  z-index: 3;
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 2rem;
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--c-white);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

.btn-primary:hover {
  background: var(--c-black);
  color: var(--c-white);
  opacity: 1;
}

/* =============================================
   GRID LAYOUT (shared)
   ============================================= */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  align-items: start;
}

.main-content {
  grid-column: 1 / 10;
}

.sidebar {
  grid-column: 10 / 13;
  position: sticky;
  top: 72px;
}

/* =============================================
   MAIN CONTAINERS
   ============================================= */
.home-main,
.cat-main,
.article-main,
.tag-main,
.inner-main {
  flex: 1;
  padding: 3rem 1.5rem;
}

.content-section {
  padding: 0;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar-inner {
  background: var(--c-gray-7);
  border-left: 4px solid var(--c-black);
  padding: 1.5rem;
}

.sidebar-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--c-black);
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-nav li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-black);
  text-decoration: none;
  border-bottom: 1px solid var(--c-gray-5);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: padding-left 0.1s;
}

.sidebar-nav li a:hover {
  padding-left: 0.5rem;
  opacity: 1;
}

.sidebar-divider {
  height: 1px;
  background: var(--c-gray-5);
  margin: 1.25rem 0;
}

/* Parlay chip decorative block */
.sidebar-chip {
  margin-top: 1.5rem;
  border: 2px solid var(--c-black);
}

.chip-block {
  background: var(--c-black);
  color: var(--c-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: center;
}

.sidebar-cta {
  margin-top: 1.25rem;
}

.sidebar-cta-btn {
  width: 100%;
  justify-content: center;
}

/* =============================================
   PAGE CONTENT / PROSE
   ============================================= */
.prose {
  max-width: var(--reading-w);
  font-size: 1rem;
  line-height: 1.75;
}

.prose h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.5rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.35rem; line-height: 1.65; }
.prose a { color: var(--c-black); font-weight: 600; text-decoration: underline; }
.prose blockquote {
  border-left: 4px solid var(--c-black);
  padding: 0.75rem 1.25rem;
  background: var(--c-gray-7);
  margin: 1.5rem 0;
  font-style: italic;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.prose th {
  background: var(--c-black);
  color: var(--c-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.8125rem;
}
.prose td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--c-gray-5);
}
.prose tr:nth-child(even) td { background: var(--c-gray-7); }

/* =============================================
   BYLINE
   ============================================= */
.byline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-gray-3);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.byline time {
  font-weight: 600;
  color: var(--c-gray-2);
}

/* =============================================
   ARTICLE HEADER
   ============================================= */
.article-header {
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--c-black);
  padding-bottom: 1.25rem;
}

.article-h1 {
  margin-top: 0.5rem;
}

.article-hero-figure {
  margin-bottom: 2rem;
}

.article-hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

/* =============================================
   STAGE LABEL
   ============================================= */
.stage-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
}

.stage-awareness { background: var(--c-gray-6); color: var(--c-black); }
.stage-consideration { background: var(--c-gray-2); color: var(--c-white); }
.stage-decision { background: var(--c-black); color: var(--c-white); }

/* =============================================
   CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--gap);
  margin-top: 1.5rem;
}

.card {
  background: var(--c-black);
  color: var(--c-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-eyebrow small {
  color: var(--c-gray-4);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.card-title a {
  color: var(--c-white);
  text-decoration: none;
}

.card-title a:hover {
  text-decoration: underline;
  opacity: 1;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--c-gray-5);
  line-height: 1.55;
  margin-bottom: 0;
}

.card-date {
  font-size: 0.75rem;
  color: var(--c-gray-4);
  margin-bottom: 0;
}

.card-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: auto;
}

.card-link:hover { opacity: 0.75; }

/* =============================================
   CATEGORY BANNER
   ============================================= */
.cat-banner,
.tag-banner {
  background: var(--c-black);
  color: var(--c-white);
  padding: 3rem 1.5rem;
}

.cat-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cat-hero-img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.6;
}

.cat-banner-copy, .tag-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gray-4);
  margin-bottom: 0.5rem;
}

.cat-h1, .tag-h1 {
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.cat-desc, .tag-desc {
  font-size: 1rem;
  color: var(--c-gray-5);
  max-width: 600px;
  margin-bottom: 0;
}

/* =============================================
   CHILD DL LIST (category)
   ============================================= */
.child-list-block,
.tag-cards-block {
  margin-top: 3rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.child-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--c-black);
}

.child-dl dt {
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.child-dl dt a {
  color: var(--c-black);
  text-decoration: none;
  font-weight: 700;
}

.child-dl dt a:hover {
  text-decoration: underline;
  opacity: 1;
}

.child-dl dd {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-gray-5);
  font-size: 0.9375rem;
  color: var(--c-gray-2);
}

.child-dl dd p { margin-bottom: 0.25rem; }

.item-date {
  font-size: 0.8125rem;
  color: var(--c-gray-4);
}

/* =============================================
   CATEGORY GROUPS (home)
   ============================================= */
.category-group {
  margin-top: 3rem;
}

.category-group .section-title a {
  color: var(--c-black);
  text-decoration: none;
}

.category-group .section-title a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* =============================================
   RELATED ARTICLES
   ============================================= */
.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 3px solid var(--c-black);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--gap);
  margin-top: 1.25rem;
}

.related-card {
  border: 2px solid var(--c-black);
  padding: 1.25rem;
}

.related-card-title {
  font-size: 0.9375rem;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.related-card-title a {
  color: var(--c-black);
  text-decoration: none;
}

.related-card-title a:hover {
  text-decoration: underline;
  opacity: 1;
}

.related-card p {
  font-size: 0.875rem;
  color: var(--c-gray-3);
  margin-bottom: 0;
}

/* =============================================
   ABOUT / INNER PAGES
   ============================================= */
.inner-h1 {
  margin-bottom: 0.5rem;
}

.author-section {
  border-left: 6px solid var(--c-black);
  padding: 1.5rem 2rem;
  background: var(--c-gray-7);
  margin-bottom: 2.5rem;
}

.author-name {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.author-credentials {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-gray-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.author-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-gray-2);
  margin-bottom: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--c-black);
  color: var(--c-white);
  border-top: 4px solid var(--c-white);
}

.footer-cta-block {
  background: var(--c-white);
  color: var(--c-black);
  border-bottom: 3px solid var(--c-black);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-cta-block small {
  color: var(--c-gray-3);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-cta-title {
  color: var(--c-black);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-cta-btns .cta-signup {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}

.footer-cta-btns .cta-login {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}

.footer-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col small {
  color: var(--c-gray-4);
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.footer-col-brand .brand-mark .logo-text {
  color: var(--c-white);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--c-gray-4);
  line-height: 1.65;
  margin-top: 0.75rem;
}

.footer-address {
  margin-top: 1rem;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-address a {
  color: var(--c-gray-4);
  font-size: 0.875rem;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-address a:hover { color: var(--c-white); opacity: 1; }

/* Footer DL nav */
.footer-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-dl dt {
  margin-top: 0.5rem;
}

.footer-dl dt a {
  color: var(--c-gray-5);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-dl dt a:hover { color: var(--c-white); opacity: 1; }

.footer-dl dd {
  font-size: 0.75rem;
  color: var(--c-gray-4);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Trust links list */
.footer-col-trust ul,
.footer-col-legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col-trust ul li a,
.footer-col-legal ul li a {
  color: var(--c-gray-5);
  font-size: 0.875rem;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

.footer-col-trust ul li a:hover,
.footer-col-legal ul li a:hover {
  color: var(--c-white);
  opacity: 1;
}

/* Responsible Gambling */
.rg-notice {
  font-size: 0.8125rem;
  color: var(--c-gray-4);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Footer bar */
.footer-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--c-gray-4);
}

.footer-bar-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bar-links li a {
  font-size: 0.75rem;
  color: var(--c-gray-4);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-bar-links li a:hover { color: var(--c-white); opacity: 1; }

/* =============================================
   STAGGER ANIMATION
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .stagger-item {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.4s ease forwards;
  }

  .stagger-item:nth-child(1) { animation-delay: 0s; }
  .stagger-item:nth-child(2) { animation-delay: 0.08s; }
  .stagger-item:nth-child(3) { animation-delay: 0.16s; }
  .stagger-item:nth-child(4) { animation-delay: 0.24s; }
  .stagger-item:nth-child(5) { animation-delay: 0.32s; }
  .stagger-item:nth-child(6) { animation-delay: 0.4s; }

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

  .sidebar {
    animation: fadeIn 0.5s ease forwards;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .stagger-item { opacity: 1; transform: none; animation: none; }
  .sidebar { animation: none; }
}

/* =============================================
   CHILD PAGES BLOCK (home)
   ============================================= */
.child-pages {
  margin-top: 3rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .footer-body {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-content {
    grid-column: 1 / 9;
  }

  .sidebar {
    grid-column: 9 / 13;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --gap: 0.75rem;
  }

  .header-inner {
    padding: 0 1rem;
    gap: 0.75rem;
    height: 56px;
  }

  .primary-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .cta {
    min-height: 44px;
    padding: 0 0.875rem;
    font-size: 0.6875rem;
  }

  /* Grid stacks */
  .grid-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .main-content,
  .sidebar {
    width: 100%;
    grid-column: auto;
  }

  .sidebar {
    position: static;
    order: 2;
  }

  .main-content {
    order: 1;
  }

  .hero-copy {
    padding: 3rem 1rem 4.5rem;
  }

  .hero-h1 {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
  }

  .footer-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cat-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cat-hero-img {
    width: 100%;
    height: 160px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .home-main,
  .cat-main,
  .article-main,
  .tag-main,
  .inner-main {
    padding: 2rem 1rem;
  }

  .footer-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  h1 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.2rem, 5vw, 1.65rem); }
}

@media (max-width: 480px) {
  .footer-bar-links {
    gap: 0.75rem;
  }

  .prose table {
    font-size: 0.875rem;
  }
}

a[data-cta],button[aria-controls]{min-height:44px;min-width:44px;box-sizing:border-box}main p a{text-decoration:underline}