/*
Theme Name: American Airsoft Club
Theme URI: https://americanairsoft.club/
Author: American Airsoft Club
Description: Lightweight custom theme for American Airsoft Club.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 7.0
Text Domain: americanairsoft
*/

:root {
  --aac-bg: #080b0e;
  --aac-panel: #111820;
  --aac-panel-2: #182231;
  --aac-text: #f6f8f1;
  --aac-muted: #b9c0bd;
  --aac-line: rgba(255, 255, 255, 0.14);
  --aac-yellow: #faff00;
  --aac-gold: #d9aa2e;
  --aac-red: #c4484b;
  --aac-green: #6fd08c;
  --aac-blue: #71b7ff;
  --aac-max: 1120px;
  --aac-radius: 8px;
  --aac-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--aac-bg);
  color: var(--aac-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--aac-yellow);
  text-underline-offset: 0.16em;
}

a:hover,
a:focus {
  color: #fff;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 0.65rem 0.85rem;
  clip: auto;
  background: #fff;
  color: #111;
}

.aac-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 14, 0.94);
  border-bottom: 1px solid var(--aac-line);
  backdrop-filter: blur(12px);
}

.aac-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--aac-max));
  min-height: 74px;
  margin: 0 auto;
}

.aac-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.aac-brand-mark {
  display: block;
  width: 112px;
  max-height: 48px;
  object-fit: contain;
}

.aac-brand-text {
  display: none;
}

.aac-nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.aac-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--aac-line);
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.aac-primary-nav {
  display: none;
  position: absolute;
  top: 74px;
  right: 1rem;
  left: 1rem;
  padding: 0.65rem;
  border: 1px solid var(--aac-line);
  border-radius: var(--aac-radius);
  background: #0b1017;
  box-shadow: var(--aac-shadow);
}

.aac-nav-toggle:checked ~ .aac-primary-nav {
  display: block;
}

.aac-menu {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aac-menu a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.aac-menu a:hover,
.aac-menu a:focus,
.current-menu-item > a {
  background: rgba(250, 255, 0, 0.12);
  color: var(--aac-yellow);
}

.aac-main {
  min-height: 70vh;
}

.aac-container {
  width: min(100% - 2rem, var(--aac-max));
  margin: 0 auto;
}

.aac-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--aac-line);
  background:
    linear-gradient(135deg, rgba(196, 72, 75, 0.2), transparent 36%),
    radial-gradient(circle at 85% 15%, rgba(250, 255, 0, 0.18), transparent 26%),
    #0b1017;
}

.aac-hero-inner {
  display: grid;
  gap: 2rem;
  width: min(100% - 2rem, var(--aac-max));
  margin: 0 auto;
  padding: clamp(2.4rem, 7vw, 5.2rem) 0;
}

.aac-eyebrow {
  margin: 0 0 0.7rem;
  color: var(--aac-yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.aac-hero h1,
.aac-page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 8vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.aac-hero-copy {
  max-width: 690px;
}

.aac-hero-copy p {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: var(--aac-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.aac-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.aac-button,
.aac-button-secondary,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--aac-yellow);
  color: #090b0e;
  font-weight: 900;
  text-decoration: none;
}

.aac-button-secondary {
  border-color: var(--aac-line);
  background: transparent;
  color: #fff;
}

.aac-hero-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--aac-line);
  border-radius: var(--aac-radius);
  background: rgba(0, 0, 0, 0.26);
}

.aac-stat-grid,
.aac-feature-grid,
.aac-post-grid {
  display: grid;
  gap: 1rem;
}

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

.aac-stat {
  padding: 1rem;
  border: 1px solid var(--aac-line);
  border-radius: var(--aac-radius);
  background: rgba(255, 255, 255, 0.04);
}

.aac-stat strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.1;
}

.aac-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--aac-muted);
  font-size: 0.9rem;
}

.aac-section {
  padding: clamp(2.3rem, 6vw, 4.5rem) 0;
}

.aac-section:nth-child(even) {
  background: #0c1118;
}

.aac-section h2,
.aac-content h2,
.aac-content h3 {
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.12;
  letter-spacing: 0;
}

.aac-section h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.aac-feature-card,
.aac-post-card {
  padding: 1rem;
  border: 1px solid var(--aac-line);
  border-radius: var(--aac-radius);
  background: var(--aac-panel);
}

.aac-feature-card h3,
.aac-post-card h2 {
  margin-top: 0;
}

.aac-post-card h2 {
  font-size: 1.25rem;
}

.aac-post-card a {
  color: #fff;
  text-decoration: none;
}

.aac-post-card a:hover,
.aac-post-card a:focus {
  color: var(--aac-yellow);
}

.aac-post-meta {
  color: var(--aac-muted);
  font-size: 0.9rem;
}

.aac-page-hero {
  border-bottom: 1px solid var(--aac-line);
  background: linear-gradient(135deg, rgba(113, 183, 255, 0.16), transparent 38%), #0b1017;
}

.page-slug-rules-guidelines .aac-page-hero {
  background: linear-gradient(135deg, rgba(111, 208, 140, 0.16), transparent 40%), #0b1017;
}

.page-slug-frequently-asked-questions .aac-page-hero {
  background: linear-gradient(135deg, rgba(217, 170, 46, 0.18), transparent 42%), #0b1017;
}

.page-slug-contact-us .aac-page-hero {
  background: linear-gradient(135deg, rgba(196, 72, 75, 0.18), transparent 42%), #0b1017;
}

.aac-page-hero-inner {
  width: min(100% - 2rem, var(--aac-max));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.6rem) 0;
}

.aac-page-hero p {
  max-width: 700px;
  color: var(--aac-muted);
  font-size: 1.08rem;
}

.aac-content {
  width: min(100% - 2rem, 920px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.aac-content > *:first-child {
  margin-top: 0;
}

.aac-content p,
.aac-content li {
  color: var(--aac-text);
}

.aac-content h2,
.aac-content h3,
.aac-content h4,
.aac-content h5 {
  margin-top: 2rem;
}

.aac-content h5 {
  font-size: 1.15rem;
}

.aac-content ul,
.aac-content ol {
  padding-left: 1.25rem;
}

.aac-content blockquote {
  margin: 1.4rem 0;
  padding: 1rem;
  border-left: 4px solid var(--aac-yellow);
  background: rgba(255, 255, 255, 0.04);
}

.aac-converted figure,
.aac-content figure {
  margin: 1.4rem 0;
}

.aac-converted img,
.aac-content img {
  border-radius: var(--aac-radius);
}

.aac-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.aac-image-grid figure {
  margin: 0;
}

.aac-image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.simple-bar-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.7rem;
  align-items: end;
  min-height: 240px;
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--aac-line);
  border-radius: var(--aac-radius);
  background: var(--aac-panel);
}

.simple-bar-chart .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(var(--value, 65) * 1.8px);
  padding: 0.75rem;
  border-radius: 6px 6px 0 0;
  background: var(--aac-red);
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.simple-bar-chart .item[data-value] {
  min-height: calc(attr(data-value number, 60) * 1.8px);
}

.simple-bar-chart .label,
.simple-bar-chart .value {
  color: #fff;
}

.horizontal-bar-chart {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--aac-line);
  border-radius: var(--aac-radius);
  background: var(--aac-panel);
}

.horizontal-item {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 0.8rem;
  align-items: center;
}

.horizontal-label {
  color: #fff;
  font-weight: 800;
}

.horizontal-bar {
  min-height: 24px;
  border-radius: 999px;
  background: var(--aac-red);
}

.horizontal-value {
  padding-left: 0.5rem;
  color: #fff;
  font-weight: 900;
}

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

.aac-footer-inner {
  display: grid;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--aac-max));
  margin: 0 auto;
  padding: 2rem 0;
}

.aac-footer-title {
  margin: 0 0 0.4rem;
  color: #fff;
  font-weight: 900;
}

.aac-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aac-footer-nav a {
  color: var(--aac-muted);
  font-weight: 800;
  text-decoration: none;
}

.aac-footer-nav a:hover,
.aac-footer-nav a:focus {
  color: var(--aac-yellow);
}

.aac-footer-small {
  color: var(--aac-muted);
  font-size: 0.9rem;
}

.home .aac-site-header {
  position: relative;
  background: linear-gradient(100deg, #b63045 0%, #8f244a 38%, #20386f 100%);
  border-bottom: 0;
  backdrop-filter: none;
}

.home .aac-header-inner {
  width: min(100% - 2.2rem, 1230px);
  min-height: 73px;
}

.home .aac-brand-mark {
  width: 165px;
  max-height: 69px;
}

.home .aac-brand-text {
  display: none;
}

.home .aac-menu a {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.home .aac-menu a:hover,
.home .aac-menu a:focus,
.home .current-menu-item > a {
  background: rgba(0, 0, 0, 0.18);
  color: var(--aac-yellow);
}

.aac-original-home {
  background: #050608;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.aac-stage {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background-image: var(--aac-stage-image);
  background-position: center center;
  background-size: cover;
}

.aac-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
  pointer-events: none;
}

.aac-stage-hero {
  display: grid;
  min-height: clamp(590px, 72vw, 762px);
  place-items: center;
  padding: 2rem 1rem;
}

.aac-original-title {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  margin: 6.3rem auto 0;
  text-align: center;
  text-transform: uppercase;
}

.aac-original-title span {
  display: block;
  padding: 0.08em 0.24em 0.1em;
  border-radius: 8px;
  background: var(--aac-yellow);
  color: #040506;
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  font-size: clamp(2.9rem, 7vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

.aac-stage-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 700px);
  margin: 0 auto;
}

.aac-stage-content-center {
  display: grid;
  align-content: center;
  min-height: 1000px;
  padding-top: 9rem;
}

.aac-title-stack {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  margin-bottom: clamp(3rem, 10vw, 8rem);
  text-align: center;
}

.aac-title-stack h2,
.aac-title-stack p {
  margin: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.36);
}

.aac-title-stack h2 {
  min-width: min(100%, 650px);
  padding: 0.55rem 1.4rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.aac-title-stack p {
  padding: 0.36rem 1.35rem;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
}

.aac-vertical-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.85rem;
  min-height: 250px;
  margin: 0 auto 1.2rem;
}

.aac-vbar {
  --aac-bar-height: 0%;
  position: relative;
  display: grid;
  grid-template-rows: 42px minmax(70px, 150px) auto;
  width: 222px;
  max-width: 30vw;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.aac-vbar-value,
.aac-vbar-label {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.15;
}

.aac-vbar-label {
  min-height: 70px;
  padding: 0.35rem 0.5rem 0.5rem;
}

.aac-vbar-fill {
  align-self: end;
  display: block;
  width: 100%;
  height: 0%;
  min-height: 4px;
  background: currentColor;
  transition: height 950ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.aac-red {
  color: #c4484b;
}

.aac-blue {
  color: #243e77;
}

.aac-purple {
  color: #5e1d5d;
}

.aac-maroon {
  color: #722a2b;
}

.aac-navy {
  color: #162649;
}

.aac-deep-purple {
  color: #3e103d;
}

.aac-caption-box {
  margin: 0 auto;
  padding: 1.7rem 2.15rem;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1.55;
  letter-spacing: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.aac-stage-impact {
  min-height: 1190px;
}

.aac-stage-content-impact {
  display: grid;
  align-content: center;
  min-height: 1060px;
  padding-top: 6rem;
}

.aac-stage-impact .aac-title-stack {
  margin-bottom: 2rem;
}

.aac-horizontal-chart {
  display: grid;
  gap: 0.65rem;
  width: min(100%, 700px);
  margin: 0 auto 1.8rem;
}

.aac-hbar-row {
  display: grid;
  grid-template-columns: 265px minmax(120px, 1fr);
  align-items: center;
}

.aac-hbar-label {
  position: relative;
  z-index: 2;
  padding: 0.35rem 0.55rem;
  border-radius: 7px 0 0 7px;
  background: #111;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
}

.aac-hbar-track {
  position: relative;
  display: block;
  height: 42px;
}

.aac-hbar-fill {
  display: block;
  width: 0%;
  height: 42px;
  border-radius: 0 7px 7px 0;
  background: currentColor;
  transition: width 1100ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.aac-hbar-value {
  position: absolute;
  top: 50%;
  left: max(1.2rem, calc(var(--aac-hbar-width, 0%) - 1.4rem));
  transform: translateY(-50%);
  min-width: 2.6rem;
  padding: 0.2rem 0.45rem;
  border-radius: 7px;
  background: #111;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.15;
  text-align: center;
  transition: left 1100ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.aac-stage-features {
  min-height: 1460px;
  background-position: center top;
}

.aac-feature-callouts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.35rem;
  width: min(100% - 2rem, 360px);
  margin-left: auto;
  margin-right: clamp(1rem, 7vw, 6rem);
  padding-top: clamp(19rem, 34vw, 24rem);
}

.aac-feature-callout {
  overflow: hidden;
  border: 8px solid #111;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.aac-feature-callout h2 {
  margin: 0;
  padding: 0.75rem 0.8rem;
  background: #c4484b;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.48;
  letter-spacing: 0;
}

.aac-feature-callout:nth-child(2) h2 {
  background: #5e1d5d;
}

.aac-feature-callout:nth-child(3) h2 {
  background: #243e77;
}

.aac-feature-callout p {
  margin: 0;
  padding: 1.15rem 1.35rem 1.3rem;
  color: #d7d7d7;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

.aac-stage-blog {
  display: grid;
  min-height: 800px;
  place-items: center;
  padding: 4rem 1rem;
}

.aac-blog-overlay {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.92);
  text-align: center;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.34);
}

.aac-blog-overlay h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

.aac-mini-posts {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
  text-align: left;
}

.aac-mini-posts .aac-post-card {
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 740px) {
  .aac-brand-text {
    display: inline;
  }

  .aac-nav-button {
    display: none;
  }

  .aac-primary-nav {
    display: block;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .aac-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }

  .aac-menu a {
    padding: 0.55rem 0.7rem;
  }

  .aac-hero-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
  }

  .aac-feature-grid,
  .aac-post-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .aac-footer-inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .aac-header-inner {
    width: min(100% - 1rem, var(--aac-max));
  }

  .aac-brand-mark {
    width: 86px;
  }

  .aac-hero-inner {
    gap: 1.2rem;
    padding: 2rem 0 2.3rem;
  }

  .aac-hero-copy p {
    font-size: 1rem;
  }

  .aac-stat {
    padding: 0.75rem;
  }

  .aac-stat strong {
    font-size: 1.25rem;
  }

  .aac-stat span {
    font-size: 0.82rem;
  }

  .aac-hero-inner,
  .aac-page-hero-inner,
  .aac-container,
  .aac-content,
  .aac-footer-inner {
    width: min(100% - 1rem, var(--aac-max));
  }

  .horizontal-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 739px) {
  .home .aac-header-inner {
    width: min(100% - 1rem, 1230px);
  }

  .home .aac-brand-mark {
    width: 118px;
    max-height: 56px;
  }

  .home .aac-nav-button {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
  }

  .home .aac-primary-nav {
    background: linear-gradient(135deg, #7d223b, #1c315f);
  }

  .aac-stage {
    min-height: 720px;
  }

  .aac-stage-hero {
    min-height: 560px;
    background-position: center center;
  }

  .aac-original-title {
    margin-top: 5rem;
  }

  .aac-original-title span {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .aac-stage-content {
    width: min(100% - 1rem, 700px);
  }

  .aac-stage-content-center,
  .aac-stage-content-impact {
    min-height: 760px;
    padding-top: 3rem;
  }

  .aac-title-stack {
    margin-bottom: 3.5rem;
  }

  .aac-title-stack h2 {
    min-width: 0;
    font-size: clamp(1.55rem, 7vw, 2.25rem);
  }

  .aac-title-stack p {
    font-size: clamp(1rem, 5vw, 1.35rem);
  }

  .aac-vertical-chart {
    gap: 0.45rem;
    min-height: 205px;
  }

  .aac-vbar {
    width: 31%;
    max-width: none;
    grid-template-rows: 36px minmax(62px, 130px) auto;
  }

  .aac-vbar-value,
  .aac-vbar-label {
    font-size: clamp(0.92rem, 4.7vw, 1.2rem);
  }

  .aac-vbar-label {
    min-height: 62px;
  }

  .aac-caption-box {
    padding: 1rem;
    font-size: 1.05rem;
  }

  .aac-stage-impact {
    min-height: 880px;
  }

  .aac-horizontal-chart {
    gap: 0.5rem;
  }

  .aac-hbar-row {
    grid-template-columns: minmax(132px, 48%) 1fr;
  }

  .aac-hbar-label {
    font-size: 0.95rem;
  }

  .aac-hbar-track,
  .aac-hbar-fill {
    height: 34px;
  }

  .aac-hbar-value {
    min-width: 2.1rem;
    font-size: 0.95rem;
  }

  .aac-stage-features {
    min-height: 980px;
    background-position: center top;
  }

  .aac-feature-callouts {
    width: min(100% - 1rem, 330px);
    margin: 0 auto;
    padding-top: 18rem;
    gap: 1rem;
  }

  .aac-feature-callout {
    border-width: 6px;
  }

  .aac-feature-callout h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    line-height: 1.3;
  }

  .aac-feature-callout p {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
}
