:root {
  /* The deep background (darker than Excavation cards) */
  --bg-main: #11130E;
  /* The card/input background (original Excavation background) */
  --bg-card: #1A1C15;
  --bg-card-hover: #22251D;

  /* Option 1's Trailasaur Teal to keep contrast manageable */
  --accentMain: #379392;
  --accentGold: #D8B67F; /* Reserved only for subtle highlights */

  --textWhite: rgba(255, 255, 255, 0.90); /* Softer white, less glare */
  --textMuted: rgba(255, 255, 255, 0.55);
  --borderDim: rgba(255, 255, 255, 0.08); /* Thinner, softer default borders */
  --borderHighlight: #379392;
}

/* Explicitly set the body to override any default greys */
body {
  background-color: var(--bg-main);
  color: var(--textWhite);
}

/* Match Media/Discoveries layout primitives exactly */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }

.container-max {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(55, 147, 146, 0.6); } /* Soft Teal Pulse */
  50%      { border-color: rgba(55, 147, 146, 0.1); }
}
.construction-banner { animation: pulse-border 2s infinite; }

.accent-bar { width: 40px; height: 4px; background: var(--accentMain); margin-bottom: 8px; }

/* ── Nav (CANONICAL link styling) ───────────────────────────────────────── */
.navlink {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--textMuted);
  transition: color 140ms ease;
  text-decoration: none;
}
.navlink:hover { color: var(--textWhite); }

/* ✅ NEW: Nav width cohesion (make nav match container-max width)
   Apply one of these wrapper classes to your nav container in HTML:
   - nav-wrap / nav-inner / topnav / site-nav / nav-bar
*/
.nav-wrap,
.nav-inner,
.topnav,
.site-nav,
.nav-bar {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* If the nav is already inside a full-bleed header, keep the header full width,
   but constrain the inner nav content. */
.header .nav-wrap,
header .nav-wrap,
.header .nav-inner,
header .nav-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Custom Search Bar Styles (no sort/filters on home) */
.search-bar-input {
  background-color: var(--bg-card); /* Pops slightly off the darker bg-main */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Visible but not glaring border */
  color: var(--textWhite);
  border-radius: 12px;              /* subtle cohesion with other sections */
  padding: 12px 14px;               /* match canonical input feel */
}
.search-bar-input::placeholder { color: var(--textMuted); }
.search-bar-input:focus {
  outline: none;
  border-color: var(--accentMain);
  background-color: var(--bg-card-hover);
  box-shadow: 0 0 15px rgba(55, 147, 146, 0.15); /* Soft teal glow when typing */
}

/* ✅ NEW: Hero stack spacing (badge hero too close to title)
   Apply one of these classes to the hero container that holds:
   [badge] + [h1] (+ optional subtitle/buttons)
*/
.hero-stack,
.hero,
.hero-header,
.page-hero,
.hero-block {
  display: flex;
  flex-direction: column;
  gap: 14px;            /* increases space between badge and title */
}

/* If you have a tighter mobile hero, slightly reduce */
@media (max-width: 640px) {
  .hero-stack,
  .hero,
  .hero-header,
  .page-hero,
  .hero-block {
    gap: 12px;
  }
}

/* Hero badge + buttons */
.badge-hero {
  background: rgba(93, 156, 89, 0.15);
  border: 1px solid rgba(93, 156, 89, 0.4);
  color: #A5D6A7;
  padding: 6px 10px;
  border-radius: 4px;
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Optional: if badge is immediately followed by an H1, ensure it never crowds */
.badge-hero + h1,
.badge-hero + .title,
.badge-hero + .hero-title {
  margin-top: 2px;
}

.btn-primary {
  background: var(--accentMain); color: #FFFFFF; border-radius: 8px; padding: 12px 16px;
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); transition: opacity 140ms ease; display: inline-block;
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  border: 1px solid var(--borderDim); background: transparent; color: var(--textWhite);
  border-radius: 8px; padding: 10px 14px; font-family: "Roboto Mono", monospace; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; transition: border-color 140ms ease; display: inline-block;
}
.btn-outline:hover { border-color: var(--accentMain); }

/* Channel cards */
.channel-card {
  display: block; border: 1px solid var(--borderDim); background: var(--bg-card);
  border-radius: 12px; padding: 18px; transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}
.channel-card:hover { transform: translateY(-2px); border-color: var(--borderHighlight); background: var(--bg-card-hover); }
.channel-card--static:hover { transform: none; border-color: var(--borderDim); }
.channel-card.ctx-app,
.channel-card.ctx-browser { display: none; }
html.is-browser .channel-card.ctx-browser,
html.is-app .channel-card.ctx-app { display: block; }

.channel-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.channel-meta { font-family: "Roboto Mono", monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--textMuted); }
.channel-title { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 18px; margin-bottom: 6px; color: var(--textWhite); }
.channel-desc { font-size: 13px; line-height: 1.55; color: var(--textMuted); margin-bottom: 12px; }
.channel-cta { font-family: "Roboto Mono", monospace; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accentMain); }

/* Badges (Retains the data-rich rarity colors from Excavation theme, but muted backgrounds) */
.channel-badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: "Roboto Mono", monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 10px; border-radius: 4px; border: 1px solid var(--borderDim);
}
.badge-green { background: rgba(93, 156, 89, 0.10); border-color: rgba(93, 156, 89, 0.4); color: #A5D6A7; }
.badge-blue  { background: rgba(55, 147, 146, 0.10); border-color: rgba(55, 147, 146, 0.4); color: #80CBC4; }
.badge-orange{ background: rgba(216, 182, 127, 0.10); border-color: rgba(216, 182, 127, 0.4); color: #FFE0B2; }
.badge-red   { background: rgba(210, 102, 102, 0.10); border-color: rgba(210, 102, 102, 0.4); color: #EF9A9A; }
.badge-purple{ background: rgba(156, 39, 176, 0.10); border-color: rgba(156, 39, 176, 0.4); color: #CE93D8; }
.badge-dim   { background: rgba(255, 255, 255, 0.03); border-color: var(--borderDim); color: var(--textMuted); }

/* Preview shell + cards */
.preview-shell { border: 1px solid var(--borderDim); border-radius: 12px; background: rgba(0,0,0,0.15); overflow: hidden; }
.preview-card { border: 1px solid var(--borderDim); background: var(--bg-card); border-radius: 12px; overflow: hidden; }
.preview-img { aspect-ratio: 16 / 9; background: #0A0B08; border-bottom: 1px solid var(--borderDim); position: relative; display: flex; align-items: center; justify-content: center; }
.preview-img .dash { position: absolute; inset: 0; border: 2px dashed var(--accentMain); margin: 16px; border-radius: 8px; opacity: 0.15; }
.preview-body { padding: 18px; }
.preview-title { font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 16px; line-height: 1.25; margin: 10px 0; color: var(--textWhite); }
.preview-desc { font-size: 13px; line-height: 1.55; color: var(--textMuted); margin-bottom: 12px; }
.preview-cta  { font-family: "Roboto Mono", monospace; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accentMain); }
/* Nav link dividers (Home only — improves readability) */
.navlinks .navlink {
  position: relative;
  padding-left: 14px;
  margin-left: 14px;
}

.navlinks .navlink:first-child {
  padding-left: 0;
  margin-left: 0;
}

/* divider line */
.navlinks .navlink:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
/* ═══════════════════════════════════════════════════════════════
   DINO NEWS — LIGHT EDITORIAL THEME
   Transitional override layer
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Page surfaces */
  --bg-main: #f4f1e9;
  --bg-main-soft: #faf8f3;
  --bg-card: rgba(255, 255, 255, 0.94);
  --bg-card-hover: #ffffff;
  --bg-raised: #ffffff;

  /* Editorial ink */
  --textWhite: #18242d;
  --textMuted: #65727c;
  --textFaint: #89949c;

  /* Brand */
  --accentMain: #00857d;
  --accentMainDark: #006a65;
  --accentMainSoft: rgba(0, 133, 125, 0.11);
  --accentGold: #b7782d;
  --accentGoldSoft: rgba(183, 120, 45, 0.11);

  /* Structure */
  --borderDim: rgba(24, 36, 45, 0.13);
  --borderStrong: rgba(24, 36, 45, 0.2);
  --borderHighlight: rgba(0, 133, 125, 0.62);

  /* Dark anchor surfaces */
  --navy: #172833;
  --navySoft: #213844;

  /* Elevation */
  --shadowSoft: 0 8px 24px rgba(28, 42, 52, 0.08);
  --shadowCard: 0 14px 36px rgba(28, 42, 52, 0.1);
  --shadowHover: 0 18px 42px rgba(28, 42, 52, 0.14);

  --radius: 8px;
}


/* ── Foundation ─────────────────────────────────────────────── */

html {
  background: var(--bg-main);
}

body {
  margin: 0;
  color: var(--textWhite);
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(0, 133, 125, 0.09),
      transparent 30rem
    ),
    radial-gradient(
      circle at 94% 14%,
      rgba(183, 120, 45, 0.08),
      transparent 28rem
    ),
    linear-gradient(180deg, var(--bg-main-soft), var(--bg-main));
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  min-height: 100vh;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(24, 36, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 36, 45, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

a {
  color: inherit;
}

.container-max {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  margin-inline: auto;
}


/* ── Main navigation shell ──────────────────────────────────── */

.site-nav {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      110deg,
      rgba(0, 133, 125, 0.18),
      transparent 42%
    ),
    var(--navy);
  box-shadow: 0 8px 30px rgba(23, 40, 51, 0.14);
}

.site-nav__inner,
.nav-wrap,
.nav-inner,
.topnav,
.nav-bar {
  width: min(1200px, calc(100% - 40px));
  max-width: 1200px;
  min-height: 68px;
  margin-inline: auto;
  padding: 0;
}

.site-nav__logo,
.site-nav__logo-app {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.site-nav__logo {
  font-size: 1.08rem;
}

.site-nav__logo-app {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navlink {
  position: relative;
  margin: 0;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.navlink::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: #61c7c1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.navlink:hover,
.navlink--active {
  color: white;
}

.navlink:hover::after,
.navlink--active::after {
  transform: scaleX(1);
}

/* Disable the former vertical divider treatment */
.navlinks .navlink,
.site-nav__links .navlink {
  margin-left: 0;
  padding-left: 0;
}

.navlinks .navlink::before,
.site-nav__links .navlink::before {
  display: none;
}


/* ── Page spacing and editorial header ─────────────────────── */

body > .p-6,
body > .md\:p-10 {
  padding-top: 42px;
}

.hero-stack,
.hero-header,
.page-hero,
.hero-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

h1,
h2,
h3,
.channel-title,
.preview-title {
  color: var(--textWhite);
}

h1 {
  color: #172833;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h2 {
  letter-spacing: -0.025em;
}

.accent-bar {
  width: 44px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accentMain), #62bcb6);
}

.badge-hero {
  width: max-content;
  margin-bottom: 4px;
  padding: 7px 11px;
  color: var(--accentMainDark);
  border: 1px solid rgba(0, 133, 125, 0.23);
  border-radius: 999px;
  background: var(--accentMainSoft);
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


/* ── Search ────────────────────────────────────────────────── */

.search-bar-input {
  min-height: 58px;
  padding: 14px 52px 14px 18px;
  color: var(--textWhite);
  border: 1px solid var(--borderDim);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadowSoft);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.search-bar-input::placeholder {
  color: #839098;
}

.search-bar-input:hover {
  border-color: var(--borderStrong);
  background: white;
}

.search-bar-input:focus {
  outline: none;
  color: var(--textWhite);
  border-color: var(--accentMain);
  background: white;
  box-shadow:
    0 0 0 4px rgba(0, 133, 125, 0.11),
    var(--shadowCard);
}


/* ── Buttons ───────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: white;
  border: 1px solid var(--accentMain);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--accentMain), var(--accentMainDark));
  box-shadow: 0 10px 20px rgba(0, 106, 101, 0.18);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.btn-primary:hover {
  opacity: 1;
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(0, 106, 101, 0.24);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--textWhite);
  border: 1px solid var(--borderDim);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-outline:hover {
  color: var(--accentMainDark);
  border-color: var(--accentMain);
  background: white;
}


/* ── Channel cards ─────────────────────────────────────────── */

.channel-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 20px;
  color: var(--textWhite);
  border: 1px solid var(--borderDim);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadowSoft);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.channel-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background:
    linear-gradient(90deg, var(--accentMain), rgba(0, 133, 125, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
}

.channel-card:hover {
  color: var(--textWhite);
  border-color: rgba(0, 133, 125, 0.35);
  background: var(--bg-card-hover);
  box-shadow: var(--shadowHover);
  transform: translateY(-3px);
}

.channel-card:hover::before {
  opacity: 1;
}

.channel-card--static:hover {
  border-color: var(--borderDim);
  box-shadow: var(--shadowSoft);
  transform: none;
}

.channel-top {
  margin-bottom: 14px;
}

.channel-meta {
  color: var(--textFaint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.channel-title {
  margin-bottom: 8px;
  color: #172833;
  font-size: 18px;
  line-height: 1.15;
}

.channel-desc {
  margin-bottom: 18px;
  color: var(--textMuted);
  font-size: 13px;
  line-height: 1.65;
}

.channel-cta {
  color: var(--accentMainDark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}


/* ── Category badges ───────────────────────────────────────── */

.channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--borderDim);
  border-radius: 999px;
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.badge-green {
  color: #27663d;
  border-color: rgba(39, 102, 61, 0.2);
  background: #edf7f0;
}

.badge-blue {
  color: #006b73;
  border-color: rgba(0, 107, 115, 0.2);
  background: #e9f7f7;
}

.badge-orange {
  color: #8b571d;
  border-color: rgba(139, 87, 29, 0.2);
  background: #fbf2e6;
}

.badge-red {
  color: #944444;
  border-color: rgba(148, 68, 68, 0.2);
  background: #fbeeee;
}

.badge-purple {
  color: #74518b;
  border-color: rgba(116, 81, 139, 0.2);
  background: #f5eef9;
}

.badge-white,
.badge-dim {
  color: #5e6971;
  border-color: rgba(94, 105, 113, 0.18);
  background: #f2f4f4;
}


/* ── Preview shell and article cards ───────────────────────── */

.preview-shell {
  overflow: hidden;
  border: 1px solid var(--borderDim);
  border-radius: var(--radius);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.64),
      rgba(238, 244, 241, 0.72)
    );
  box-shadow: var(--shadowSoft);
}

.preview-card {
  overflow: hidden;
  color: var(--textWhite);
  border: 1px solid var(--borderDim);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 22px rgba(28, 42, 52, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.preview-card:hover {
  border-color: rgba(0, 133, 125, 0.32);
  box-shadow: var(--shadowCard);
  transform: translateY(-2px);
}

.preview-img {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--borderDim);
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(183, 120, 45, 0.18),
      transparent 14rem
    ),
    linear-gradient(135deg, #e4ece8, #d5e1dc);
}

.preview-img .dash {
  border-color: var(--accentMain);
  opacity: 0.2;
}

.preview-body {
  padding: 19px;
}

.preview-title {
  margin: 10px 0;
  color: #172833;
  font-size: 17px;
  line-height: 1.3;
}

.preview-desc {
  color: var(--textMuted);
  line-height: 1.62;
}

.preview-cta {
  color: var(--accentMainDark);
  font-size: 10px;
  font-weight: 700;
}


/* ── Search result area ────────────────────────────────────── */

#search-results-container {
  padding: 22px;
  border: 1px solid var(--borderDim);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadowSoft);
}

#search-results-container h2 {
  color: #172833;
}

#clear-search {
  color: var(--textMuted) !important;
}

#clear-search:hover {
  color: var(--accentMainDark) !important;
}


/* ── Download block ────────────────────────────────────────── */

.dino-download-tagline {
  color: #172833;
}

.dino-download-sub {
  color: var(--textMuted);
}

.dino-store-badge {
  border-radius: var(--radius);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.dino-store-badge:hover {
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadowSoft);
  transform: translateY(-2px);
}


/* ── Construction banner ───────────────────────────────────── */

.construction-banner {
  color: #655025;
  border: 1px solid rgba(183, 120, 45, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 248, 233, 0.9);
  box-shadow: var(--shadowSoft);
}

@keyframes pulse-border {
  0%,
  100% {
    border-color: rgba(183, 120, 45, 0.42);
  }

  50% {
    border-color: rgba(183, 120, 45, 0.16);
  }
}


/* ── Footer ────────────────────────────────────────────────── */

footer {
  color: rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(
      135deg,
      rgba(0, 133, 125, 0.14),
      transparent 42%
    ),
    var(--navy);
  box-shadow: var(--shadowSoft);
}

footer p {
  color: rgba(255, 255, 255, 0.72) !important;
}


/* ── Focus and accessibility ───────────────────────────────── */

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(0, 133, 125, 0.2);
  outline-offset: 3px;
}


/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 760px) {
  .container-max,
  .site-nav__inner,
  .nav-wrap,
  .nav-inner,
  .topnav,
  .nav-bar {
    width: min(100% - 28px, 1200px);
  }

  .site-nav__inner {
    min-height: 62px;
  }

  .site-nav__links {
    width: 100%;
    gap: 0;
    padding: 12px 0 18px;
  }

  .navlink {
    width: 100%;
    padding: 10px 0;
  }

  .navlink::after {
    right: auto;
    width: 32px;
  }

  body > .p-6,
  body > .md\:p-10 {
    padding: 28px 14px;
  }

  .search-bar-input {
    min-height: 54px;
  }

  .channel-card {
    padding: 18px;
  }

  footer {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
