/* ═══════════════════════════════════════════════════════════════
   UNFILTERED — Editorial ADHD Magazine
   style.css
════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bg:           #FAFAF8;
  --bg2:          #F2F0EC;
  --bg3:          #FFFFFF;
  --text:         #111111;
  --text-muted:   #555550;
  --accent:       #E85D26;
  --accent-light: #FFF0EB;
  --serif:        Georgia, 'Times New Roman', serif;
  --sans:         'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --border:       #E5E3DF;
  --white:        #FFFFFF;
  --nav-h:        68px;

  --transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] {
  --bg:           #111111;
  --bg2:          #1a1a1a;
  --bg3:          #212121;
  --text:         #F5F3EF;
  --text-muted:   #888880;
  --accent:       #FF7A45;
  --accent-light: #2a1a12;
  --border:       #2a2a2a;
  --white:        #1a1a1a;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow: hidden; /* scroll container handles scrolling */
  transition: var(--transition);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

/* Transparent over hero, solid when scrolled */
.site-nav.nav--solid {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: none;
}

.site-nav.nav--hero {
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.nav-left {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex: 1;
}

.logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  color: inherit;
  line-height: 1;
  text-decoration: none;
}

/* White logo on hero */
.site-nav.nav--hero .logo,
.site-nav.nav--hero .logo-tagline,
.site-nav.nav--hero .nav-links a,
.site-nav.nav--hero .theme-toggle {
  color: rgba(255,255,255,0.92);
}

.logo-tagline {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.theme-toggle {
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  transition: var(--transition);
  white-space: nowrap;
  opacity: 0.75;
}

.theme-toggle:hover {
  opacity: 1;
}

/* ── SCROLL CONTAINER ────────────────────────────────────────── */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  position: relative;
}

/* Hide scrollbar but keep function */
.scroll-container::-webkit-scrollbar { display: none; }
.scroll-container { -ms-overflow-style: none; scrollbar-width: none; }

/* ── PANELS — base ───────────────────────────────────────────── */
.panel {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 5vw 3rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ── PANEL 1: HERO ───────────────────────────────────────────── */
.panel-hero {
  background: #000;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}

.panel-hero:hover .hero-img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 45%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 5vw 8vh;
  max-width: 760px;
  color: #fff;
}

.label-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--accent);
  padding: 0.25rem 0.7rem;
  margin-bottom: 1.2rem;
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: #fff;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s, color 0.2s;
}

.hero-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-link .arrow {
  transition: transform 0.2s;
}

.hero-link:hover .arrow {
  transform: translateX(4px);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeUpHint 2s ease 1.5s both;
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

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

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-header {
  margin-bottom: 2rem;
}

/* ── PANEL 2: FEATURED GRID ──────────────────────────────────── */
.panel-grid {
  background: var(--bg);
}

.panel-grid .panel-inner {
  justify-content: flex-start;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2px;
  flex: 1;
  min-height: 0;
}

.feat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
}

.feat-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feat-stack .feat-card {
  flex: 1;
}

.card-img-link {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.feat-card--large .card-img-link {
  height: 55%;
}

.feat-card--small .card-img-link {
  height: 50%;
}

.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feat-card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.2rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.feat-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  flex: 1;
}

.feat-card--large h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  margin-bottom: 0.8rem;
}

.feat-card--small h2 {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.card-excerpt {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: gap 0.2s;
}

.read-link:hover {
  gap: 0.6rem;
}

/* ── PANEL 3: RIGHT NOW ──────────────────────────────────────── */
.panel-right-now {
  background: var(--bg2);
}

.panel-right-now .panel-inner {
  justify-content: flex-start;
}

.right-now-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  flex: 1;
  min-height: 0;
  align-content: start;
}

.rn-card {
  display: flex;
  flex-direction: column;
  background: var(--bg3);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.rn-card:hover {
  transform: translateY(-3px);
}

.rn-card .card-img-link {
  height: 200px;
}

.rn-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rn-card:hover img {
  transform: scale(1.05);
}

.rn-card .card-body {
  padding: 1rem 1.2rem 1.4rem;
  flex: 1;
}

.rn-card h3 {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.rn-card .card-excerpt {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ── PANEL 4: PULL QUOTE ─────────────────────────────────────── */
.panel-quote {
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .panel-quote {
  background: var(--accent);
}

.quote-inner {
  text-align: center;
  padding: 4rem 8vw;
  max-width: 1000px;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  opacity: 0.6;
}

[data-theme="dark"] .quote-mark {
  color: rgba(0,0,0,0.3);
}

.big-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
  font-style: normal;
}

[data-theme="dark"] .big-quote {
  color: #fff;
}

.big-quote em {
  color: var(--accent);
  font-style: italic;
}

[data-theme="dark"] .big-quote em {
  color: rgba(255,255,255,0.7);
}

.quote-cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2rem;
  font-style: normal;
}

/* ── PANEL 5: ABOUT ──────────────────────────────────────────── */
.panel-about {
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.about-image-col {
  overflow: hidden;
}

.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.panel-about:hover .about-image-col img {
  transform: scale(1.04);
}

.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 6vw 4rem;
  background: var(--bg2);
}

.about-text-col h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-text-col p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 460px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.about-link:hover { gap: 0.8rem; }

/* ── PANEL 6: NEWSLETTER + FOOTER ───────────────────────────── */
.panel-newsletter {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-inner {
  width: 100%;
  max-width: 680px;
  padding: calc(var(--nav-h) + 2rem) 5vw 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.nl-sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.nl-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 480px;
  margin-bottom: 0.8rem;
}

.nl-input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-right: none;
  background: var(--bg3);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px 0 0 2px;
}

.nl-input:focus {
  border-color: var(--accent);
}

.nl-btn {
  padding: 0.85rem 1.6rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0 2px 2px 0;
}

.nl-btn:hover {
  background: #c94d1e;
}

.nl-fine {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: 2.5rem;
}

/* Footer within newsletter panel */
.footer-nav {
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.footer-logo {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ── PANEL PROGRESS DOTS ─────────────────────────────────────── */
.panel-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.35;
  transition: opacity 0.3s, background 0.3s, transform 0.3s;
}

.dot--active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.4);
}

/* White dots over hero */
body.on-hero .dot {
  background: rgba(255,255,255,0.6);
}

body.on-hero .dot--active {
  background: var(--accent);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   ARTICLE PAGE
════════════════════════════════════════════════════════════════ */
.article-page body {
  overflow: auto;
}

/* Scroll normally on article page */
.article-page .scroll-container {
  height: auto;
  overflow: visible;
  scroll-snap-type: none;
}

.article-hero {
  position: relative;
  height: 88vh;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.55) 100%
  );
}

.article-hero-meta {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 760px;
  padding: 0 2rem;
  color: #fff;
  text-align: left;
}

.article-hero-meta .label-tag {
  margin-bottom: 1rem;
}

.article-hero-meta h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.article-byline {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

/* Article body */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.article-body {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin: 3rem 0 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.article-body h2:first-child {
  border-top: none;
  padding-top: 0;
}

.article-body ol,
.article-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body strong {
  font-weight: 600;
  color: var(--text);
}

.article-body em {
  font-style: italic;
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 1.2rem 2rem;
  margin: 2.5rem 0;
  background: var(--accent-light);
  border-radius: 0 4px 4px 0;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin: 0 !important;
}

/* Article nav */
.article-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
}

.back-link {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--accent); }

/* Related articles */
.related-section {
  background: var(--bg2);
  padding: 4rem 5vw;
  margin-top: 4rem;
}

.related-section h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.related-card {
  display: flex;
  flex-direction: column;
  background: var(--bg3);
  overflow: hidden;
}

.related-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-card .card-body {
  padding: 1rem 1.2rem 1.5rem;
}

.related-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}

/* ── ANIMATIONS: panel entry ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel.is-active .hero-content,
.panel.is-active .panel-inner,
.panel.is-active .quote-inner,
.panel.is-active .about-text-col,
.panel.is-active .newsletter-inner {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .right-now-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 58px; }

  .nav-links { display: none; }
  .logo-tagline { display: none; }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .feat-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .right-now-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image-col {
    height: 40vh;
  }

  .about-text-col {
    padding: 2rem 2rem;
  }

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

  .panel-dots {
    right: 0.7rem;
  }

  .newsletter-inner {
    padding: calc(var(--nav-h) + 1rem) 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .right-now-grid {
    grid-template-columns: 1fr;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-input {
    border-right: 1.5px solid var(--border);
    border-bottom: none;
    border-radius: 2px 2px 0 0;
  }

  .nl-btn {
    border-radius: 0 0 2px 2px;
  }

  .feat-stack {
    grid-template-columns: 1fr;
  }
}
