:root {
  --bg: #050505;
  --surface: #0c0c0d;
  --surface-2: #141416;
  --surface-3: #1a1a1d;
  --text: #f5f5f4;
  --muted: #aaa9a6;
  --muted-2: #7c7b78;
  --line: rgba(255, 255, 255, 0.1);
  --red: #ef2016;
  --red-dark: #9d0a08;
  --orange: #ff5a1f;
  --max: 1240px;
  --header-height: 78px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 12%, rgba(239, 32, 22, 0.08), transparent 23rem),
    var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.search-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 90, 31, 0.95);
  outline-offset: 4px;
}

::selection {
  color: white;
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: white;
  background: var(--red);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.24), transparent);
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.page-header {
  height: 68px;
  border-bottom-color: var(--line);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 36px), 1380px);
  height: 100%;
  margin-inline: auto;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.7rem;
  min-height: 48px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(239, 32, 22, 0.35));
}

.brand-name {
  display: grid;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 0.9;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.brand-name span:last-child {
  color: #ef2a1f;
}

.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.55rem;
}

.icon-button,
.menu-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: white;
  background: rgba(10, 10, 10, 0.58);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.icon-button:hover,
.menu-button:hover {
  border-color: rgba(239, 32, 22, 0.8);
  background: rgba(239, 32, 22, 0.16);
  transform: translateY(-1px);
}

.icon-button svg,
.menu-button svg {
  width: 20px;
  height: 20px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #d9150d, #a80705);
  box-shadow: 0 10px 28px rgba(239, 32, 22, 0.2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(239, 32, 22, 0.34);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(600px, 82vh, 890px);
  overflow: hidden;
  isolation: isolate;
  background: #020202;
}

.hero-media {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
  will-change: transform;
}

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

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, transparent 32%, rgba(0, 0, 0, 0.08) 56%, rgba(5, 5, 5, 0.94) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 35%, transparent 70%, rgba(0, 0, 0, 0.14));
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding-bottom: 2.5rem;
  gap: 2rem;
}

.hero-intro {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.75rem;
  color: #ff6a3b;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  text-wrap: balance;
}

.scroll-cue {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.45); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

main {
  overflow: clip;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section--compact {
  padding-top: 2.5rem;
}

.section--tinted {
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(239, 32, 22, 0.055), transparent 34%),
    #09090a;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.section-heading h2,
.page-title {
  margin: 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading h2 span,
.page-title span {
  color: var(--red);
}

.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.55rem;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid rgba(239, 32, 22, 0.5);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 160ms ease, color 160ms ease;
}

.text-link:hover {
  gap: 0.82rem;
  color: #ff665e;
}

.feature-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("../img/banner-bajo-las-ruedas.webp");
  background-size: cover;
  background-position: 24% center;
  transform: scale(1.02);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.feature-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 47%, rgba(0, 0, 0, 0.12) 88%),
              linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent 65%);
}

.feature-card:hover::before {
  transform: scale(1.065);
}

.feature-content {
  width: min(650px, 100%);
  padding: clamp(1.6rem, 4vw, 3.5rem);
}

.feature-content h3 {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.feature-content p {
  max-width: 560px;
  margin: 0 0 1.4rem;
  color: #d0cfcc;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  color: #aaa9a6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.meta span + span::before {
  margin-right: 0.65rem;
  color: var(--red);
  content: "•";
}

.cluster-strip {
  display: flex;
  margin-top: 1.4rem;
  padding-bottom: 0.35rem;
  overflow-x: auto;
  gap: 0.7rem;
  scrollbar-width: thin;
}

.cluster-chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8c7c4;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cluster-chip:hover {
  border-color: rgba(239, 32, 22, 0.65);
  color: white;
  background: rgba(239, 32, 22, 0.1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.content-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.content-card:hover {
  z-index: 1;
  border-color: rgba(239, 32, 22, 0.42);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
  transform: translateY(-6px);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.card-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(5, 5, 5, 0.6), transparent 64%),
    url("../img/banner-bajo-las-ruedas.webp") center / cover no-repeat;
  transition: transform 520ms cubic-bezier(.2,.7,.2,1), filter 520ms ease;
}

.content-card:hover .card-media::before {
  filter: saturate(1.1) contrast(1.03);
  transform: scale(1.07);
}

.card-media--left::before { background-position: 8% center; }
.card-media--middle::before { background-position: 52% center; }
.card-media--right::before { background-position: 92% center; }

.card-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.38rem 0.62rem;
  border-radius: 6px;
  color: white;
  background: rgba(215, 22, 14, 0.94);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.card-body h3 {
  margin: 0 0 0.72rem;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.18;
  text-wrap: balance;
}

.card-body p {
  display: -webkit-box;
  margin: 0 0 1.1rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.review-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(239, 32, 22, 0.34), transparent 32%),
    linear-gradient(145deg, #1b1b1e, #090909);
}

.review-visual::before {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 50px rgba(239, 32, 22, 0.08);
}

.review-visual svg {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  color: #ff453a;
  filter: drop-shadow(0 10px 26px rgba(239, 32, 22, 0.26));
  stroke-width: 1.35;
}

.review-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.16rem;
  margin-bottom: 0.7rem;
  color: #fff;
  font-weight: 900;
}

.review-score strong {
  color: #ff4a40;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.review-score span {
  color: var(--muted-2);
  font-size: 0.75rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1.25rem;
}

.video-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  isolation: isolate;
}

.video-card:first-child {
  min-height: 430px;
}

.video-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: url("../img/banner-bajo-las-ruedas.webp") center / cover no-repeat;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.video-card:nth-child(2)::before { background-position: 12% center; }
.video-card:nth-child(3)::before { background-position: 88% center; }

.video-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 5%, rgba(0, 0, 0, 0.12) 72%);
}

.video-card:hover::before {
  transform: scale(1.075);
}

.video-play {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(239, 32, 22, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.video-play svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
  fill: white;
}

.video-copy {
  padding: 1.45rem;
}

.video-copy h3 {
  margin: 0.3rem 0 0.6rem;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.14;
  text-wrap: balance;
}

.video-card:first-child .video-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.newsletter {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(239, 32, 22, 0.32);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 10%, rgba(239, 32, 22, 0.28), transparent 33%),
    linear-gradient(135deg, #151516, #080808);
  box-shadow: var(--shadow);
}

.newsletter::after {
  position: absolute;
  top: 50%;
  right: -45px;
  width: 270px;
  height: 270px;
  content: "";
  background: url("../icons/rueda-fuego.png") center / contain no-repeat;
  filter: saturate(1.15);
  opacity: 0.16;
  transform: translateY(-50%) scale(1.8);
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  gap: clamp(2rem, 6vw, 5rem);
}

.newsletter h2 {
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.newsletter p {
  max-width: 600px;
  margin: 0;
  color: #bbb9b6;
}

.newsletter-form {
  display: grid;
  gap: 0.7rem;
}

.form-row {
  display: flex;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  gap: 0.4rem;
}

.form-row input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.8rem 1rem;
  border: 0;
  color: white;
  background: transparent;
  outline: none;
}

.form-row input::placeholder {
  color: #74736f;
}

.form-row button {
  flex: 0 0 auto;
  padding: 0.8rem 1.15rem;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-note,
.form-status {
  margin: 0;
  color: #83827f;
  font-size: 0.72rem;
}

.form-status {
  min-height: 1.2em;
  color: #ff7169;
}

.about-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.about-emblem {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 390px;
  margin-inline: auto;
}

.about-emblem::before,
.about-emblem::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.about-emblem::before {
  inset: 8%;
  border: 1px solid rgba(239, 32, 22, 0.24);
  box-shadow: 0 0 70px rgba(239, 32, 22, 0.1);
}

.about-emblem::after {
  inset: 22%;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  animation: slow-spin 24s linear infinite;
}

.about-emblem img {
  position: relative;
  z-index: 1;
  width: 54%;
  filter: drop-shadow(0 18px 44px rgba(239, 32, 22, 0.22));
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.about-copy h2 {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-copy p {
  max-width: 680px;
  color: #bdbcb9;
  font-size: 1.05rem;
}

.about-copy .text-link {
  margin-top: 0.55rem;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 480px;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  overflow: hidden;
  isolation: isolate;
  background: #080808;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: url("../img/banner-bajo-las-ruedas.webp") center / cover no-repeat;
  filter: saturate(0.75) brightness(0.43);
  transform: scale(1.04);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to top, #050505 0%, rgba(5, 5, 5, 0.35) 78%);
}

.page-intro {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #c2c1be;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.hub-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 1.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, transparent, rgba(239, 32, 22, 0.09)),
    var(--surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.hub-card:hover {
  border-color: rgba(239, 32, 22, 0.5);
  transform: translateY(-4px);
}

.hub-card::after {
  position: absolute;
  right: -2rem;
  bottom: -2.4rem;
  color: rgba(255, 255, 255, 0.035);
  content: attr(data-number);
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
}

.hub-card h2 {
  position: relative;
  z-index: 1;
  margin: 0.4rem 0 0.65rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.hub-card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.legal-wrap,
.prose {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.prose h2,
.legal-wrap h2 {
  margin: 2.4rem 0 0.8rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.prose p,
.legal-wrap p,
.legal-wrap li {
  color: #c0bfbc;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  padding: 4rem 0 3rem;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: #858480;
  font-size: 0.88rem;
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 0.5rem;
}

.footer-column a {
  color: #8f8e8a;
  font-size: 0.84rem;
  transition: color 150ms ease;
}

.footer-column a:hover {
  color: #fff;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-list a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d8d7d4;
  font-size: 0.72rem;
  font-weight: 900;
}

.social-list a:hover {
  border-color: var(--red);
  color: white;
  background: rgba(239, 32, 22, 0.12);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #6f6e6a;
  font-size: 0.76rem;
  gap: 1rem;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  place-items: start center;
  padding: 9rem 1.25rem 2rem;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}

.search-panel.is-open {
  display: grid;
}

.search-box {
  width: min(760px, 100%);
}

.search-top {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.search-top input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  background: #111113;
  outline: none;
  font-size: 1rem;
}

.search-close {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: white;
  background: #111113;
  cursor: pointer;
}

.search-results {
  display: grid;
  max-height: min(55vh, 520px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0b0b0c;
}

.search-result {
  display: block;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result:hover {
  background: rgba(239, 32, 22, 0.09);
}

.search-result strong {
  display: block;
  line-height: 1.3;
}

.search-result span {
  color: var(--muted-2);
  font-size: 0.75rem;
}

.search-empty {
  padding: 1.2rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .nav-list {
    gap: 1.1rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card:first-child {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    display: block;
    padding: 2rem 1.25rem;
    overflow-y: auto;
    background: rgba(5, 5, 5, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    align-content: start;
    height: auto;
    gap: 0;
  }

  .nav-link {
    min-height: 64px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero {
    min-height: 0;
    padding-top: 56.25%;
  }

  .hero-media {
    inset: 0;
  }

  .hero-media img {
    object-fit: cover;
  }

  .hero::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), transparent 55%, rgba(5, 5, 5, 0.82));
  }

  .hero-bottom {
    position: absolute;
    inset: auto 0 0;
    width: min(calc(100% - 30px), var(--max));
    padding-bottom: 1rem;
  }

  .hero-copy,
  .hero-intro .eyebrow,
  .scroll-cue {
    display: none;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid > :last-child {
    grid-column: 1 / -1;
  }

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

  .about-emblem {
    width: min(340px, 80vw);
  }

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

@media (max-width: 620px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .icon-button,
  .menu-button {
    width: 39px;
    height: 39px;
  }

  .hero {
    margin-top: var(--header-height);
    padding-top: 56.25%;
  }

  .site-header {
    height: var(--header-height);
    border-bottom-color: var(--line);
    background: rgba(5, 5, 5, 0.96);
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 1.5rem;
    gap: 0.9rem;
  }

  .feature-card {
    min-height: 480px;
  }

  .feature-card::before {
    background-position: 19% center;
  }

  .feature-card::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 14%, rgba(0, 0, 0, 0.68) 62%, rgba(0, 0, 0, 0.16));
  }

  .feature-content h3 {
    font-size: 2.35rem;
  }

  .card-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .card-grid > :last-child,
  .video-card:first-child {
    grid-column: auto;
  }

  .video-card,
  .video-card:first-child {
    min-height: 340px;
  }

  .newsletter::after {
    right: -95px;
    opacity: 0.1;
  }

  .newsletter-inner {
    padding: 2rem 1.25rem;
  }

  .form-row {
    display: grid;
    padding: 7px;
    border-radius: 16px;
  }

  .form-row button {
    min-height: 48px;
    border-radius: 11px;
  }

  .page-hero {
    min-height: 400px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-top: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding: 1.1rem 0;
  }
}

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

  .hero-media {
    transform: none !important;
  }
}

/* Article system */
.article-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 180;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.article-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  box-shadow: 0 0 16px rgba(239, 32, 22, 0.75);
}

.article-hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  overflow: hidden;
  isolation: isolate;
  background: #030303;
}

.article-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) brightness(0.62);
}

.article-hero::before,
.article-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.article-hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.97) 0%, rgba(3, 3, 3, 0.76) 54%, rgba(3, 3, 3, 0.2) 100%),
    linear-gradient(to top, #050505 0%, transparent 45%);
}

.article-hero::after {
  z-index: -1;
  background: radial-gradient(circle at 18% 55%, rgba(239, 32, 22, 0.14), transparent 26rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 3.5rem;
  padding: 0;
  list-style: none;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
}

.breadcrumbs li + li::before {
  margin-right: 0.55rem;
  color: var(--red);
  content: "/";
}

.breadcrumbs a:hover {
  color: white;
}

.article-hero-content {
  max-width: 960px;
}

.draft-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(255, 174, 0, 0.45);
  border-radius: 6px;
  color: #ffd166;
  background: rgba(255, 174, 0, 0.1);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-category {
  margin: 0 0 0.8rem;
  color: #ff5c52;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-title {
  max-width: 960px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.4vw, 7.2rem);
  line-height: 0.91;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

.article-deck {
  max-width: 760px;
  margin: 1.5rem 0 1.7rem;
  color: #d1d0cd;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
  text-wrap: balance;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-main {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(230px, 300px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(3rem, 7vw, 7rem);
}

.article-body {
  min-width: 0;
}

.article-lede {
  margin: 0 0 2.5rem;
  padding-left: 1.35rem;
  border-left: 3px solid var(--red);
  color: #e7e6e3;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.article-section {
  scroll-margin-top: 100px;
}

.article-body h2 {
  margin: 4rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.article-body h2::before {
  display: block;
  width: 50px;
  height: 4px;
  margin-bottom: 0.9rem;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.article-body h3 {
  margin: 2.5rem 0 0.9rem;
  font-size: clamp(1.3rem, 2.4vw, 1.72rem);
  line-height: 1.2;
}

.article-body p,
.article-body li {
  color: #c8c7c4;
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-body p {
  margin: 0 0 1.45rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.8rem;
  padding-left: 1.4rem;
}

.article-body li + li {
  margin-top: 0.65rem;
}

.article-body a:not(.product-cta):not(.video-consent-button) {
  color: #ff6b62;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 98, 0.45);
  text-underline-offset: 3px;
}

.article-sidebar {
  position: sticky;
  top: 98px;
}

.toc,
.side-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 16, 18, 0.86);
}

.toc h2,
.side-card h2 {
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li + li {
  margin-top: 0.15rem;
}

.toc a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-left: 2px solid transparent;
  color: #9d9c98;
  font-size: 0.79rem;
  line-height: 1.35;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.toc a:hover,
.toc a.is-active {
  border-left-color: var(--red);
  color: white;
  background: rgba(239, 32, 22, 0.075);
}

.share-row {
  display: flex;
  margin-top: 1rem;
  gap: 0.5rem;
}

.share-button {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #b4b3af;
  background: #0e0e10;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 900;
}

.share-button:hover {
  border-color: rgba(239, 32, 22, 0.55);
  color: white;
}

.article-figure {
  margin: 2.7rem 0;
}

.article-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111;
}

.article-figure figcaption {
  margin-top: 0.65rem;
  color: #7f7e7a;
  font-size: 0.75rem;
  line-height: 1.5;
}

.fact-box {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.5rem 1.6rem 1.5rem 2rem;
  overflow: hidden;
  border: 1px solid rgba(239, 32, 22, 0.3);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(239, 32, 22, 0.12), rgba(255, 255, 255, 0.025));
}

.fact-box::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(to bottom, var(--red), var(--orange));
}

.fact-box strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #ff665d;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-box p {
  margin: 0;
  color: #dfdeda;
}

.article-quote {
  margin: 3.3rem 0;
  padding: 0 0 0 1.6rem;
  border-left: 4px solid var(--red);
  color: white;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.data-table-wrap {
  margin: 2.5rem 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #0c0c0e;
}

.data-table th,
.data-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: #c4c3bf;
  text-align: left;
  font-size: 0.84rem;
}

.data-table th {
  color: white;
  background: rgba(239, 32, 22, 0.09);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.video-embed {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  margin: 2.8rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.78)),
    url("../img/banner-bajo-las-ruedas.webp") center / cover;
}

.video-consent {
  max-width: 470px;
  padding: 1.25rem;
  text-align: center;
}

.video-consent strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.video-consent p {
  margin: 0 0 1rem;
  color: #b0afab;
  font-size: 0.82rem;
  line-height: 1.55;
}

.video-consent-button,
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.ad-slot {
  display: grid;
  place-items: center;
  min-height: 120px;
  margin: 2.6rem 0;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #5f5e5b;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.affiliate-disclosure {
  margin: 3rem 0 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  color: #8e8d89;
  background: #0d0d0f;
  font-size: 0.75rem;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.4rem 0 3rem;
  gap: 1rem;
}

.product-card {
  display: grid;
  align-content: start;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0d0d0f;
}

.product-card-icon {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle, rgba(239, 32, 22, 0.24), transparent 44%),
    #151517;
  font-family: var(--font-display);
  font-size: 3.6rem;
}

.product-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.product-card p {
  margin: 0 0 1rem;
  color: #969591;
  font-size: 0.8rem;
  line-height: 1.55;
}

.product-card .product-cta {
  align-self: end;
  margin-top: auto;
}

.product-cta.is-disabled {
  color: #757470;
  background: #1b1b1d;
  cursor: default;
}

.article-sources {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.article-sources > p {
  color: #92918d;
  font-size: 0.84rem;
}

.article-sources ol {
  display: grid;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.75rem;
}

.article-sources li {
  display: grid;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--red);
  background: #0c0c0e;
  gap: 0.2rem;
}

.article-sources a {
  color: #f1f0ec;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.article-sources a:hover {
  color: var(--red);
}

.article-sources span {
  color: #777671;
  font-size: 0.72rem;
}

.image-credit {
  display: block;
  margin-top: 0.35rem;
  color: #777671;
  font-size: 0.68rem;
}

.image-credit a,
.hero-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-credit {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  z-index: 2;
  margin: 0;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.58);
  font-size: 0.58rem;
}

.youtube-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin: 2.2rem 0;
  padding: 1.4rem;
  border: 1px solid rgba(239, 32, 22, 0.45);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(239, 32, 22, 0.16), #0c0c0e 62%);
  gap: 1.25rem;
}

.youtube-cta span:first-child {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.youtube-cta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.youtube-cta p {
  margin: 0.45rem 0 0;
  color: #a6a5a1;
  font-size: 0.82rem;
}

.youtube-cta > a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 7px;
  color: #fff;
  background: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  gap: 0.45rem;
  white-space: nowrap;
}

.author-box {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  margin-top: 4rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0c0e;
  gap: 1.25rem;
}

.author-box img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.author-box h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-transform: none;
}

.author-box h2::before {
  display: none;
}

.author-box p {
  margin: 0;
  color: #92918d;
  font-size: 0.84rem;
  line-height: 1.55;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.25rem;
  gap: 1rem;
}

.article-nav a {
  display: block;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0c0e;
}

.article-nav a:last-child {
  text-align: right;
}

.article-nav span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-nav strong {
  font-size: 0.87rem;
  line-height: 1.35;
}

@media (max-width: 940px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-row: 1;
  }

  .toc ol {
    columns: 2;
    column-gap: 1rem;
  }

  .share-row {
    display: none;
  }
}

@media (max-width: 700px) {
  .article-hero {
    min-height: 660px;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
  }

  .article-hero::before {
    background: linear-gradient(to top, #050505 0%, rgba(5, 5, 5, 0.62) 64%, rgba(5, 5, 5, 0.45) 100%);
  }

  .breadcrumbs {
    margin-bottom: 2.4rem;
  }

  .article-title {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .toc ol {
    columns: 1;
  }

  .product-grid,
  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav a:last-child {
    text-align: left;
  }

  .author-box {
    grid-template-columns: 64px 1fr;
  }

  .author-box img {
    width: 64px;
    height: 64px;
  }

  .youtube-cta {
    grid-template-columns: 1fr;
  }

  .youtube-cta > a {
    justify-content: center;
  }
}
