/* API Connect HQ — celadon ledger theme */
:root {
  --ink: #15202b;
  --ink-soft: #3a4a58;
  --muted: #5c6b78;
  --paper: #f2f5f7;
  --paper-2: #e7eef1;
  --surface: #fbfcfd;
  --accent: #0d6b62;
  --accent-deep: #0a524b;
  --accent-soft: #d5ebe7;
  --brass: #b08d57;
  --brass-soft: #efe4d2;
  --line: #c9d4dc;
  --danger: #9b3a3a;
  --ok: #1f6b45;
  --shadow: 0 18px 40px rgba(21, 32, 43, 0.08);
  --radius: 4px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(13, 107, 98, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(176, 141, 87, 0.1), transparent 50%),
    linear-gradient(180deg, #eef3f5 0%, var(--paper) 28%, #f6f4ef 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 650;
}

p {
  margin: 0 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.inline-error,
.cookie-error {
  background: #f8e8e8;
  color: var(--danger);
  border: 1px solid #e4bcbc;
  padding: 0.75rem 1rem;
  margin: 0.5rem 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(251, 252, 253, 0.86);
  border-bottom: 1px solid rgba(201, 212, 220, 0.85);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.4rem;
  background:
    linear-gradient(145deg, var(--accent) 0%, var(--accent-deep) 70%),
    var(--accent);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 28%;
  height: 2px;
  background: var(--brass);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 550;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent-deep);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.8rem 1.25rem;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-deep);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn-ghost:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: #f4f8f7;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12, 28, 32, 0.88) 8%, rgba(12, 28, 32, 0.55) 48%, rgba(12, 28, 32, 0.35) 100%),
    linear-gradient(0deg, rgba(12, 28, 32, 0.7), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 4rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  max-width: 12ch;
  animation: riseIn 0.9s ease both;
}

.hero-line {
  width: 4.5rem;
  height: 3px;
  background: var(--brass);
  margin-bottom: 1.35rem;
  animation: riseIn 1s ease 0.1s both;
}

.hero h1 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 550;
  max-width: 28ch;
  color: #e8f2ef;
  margin-bottom: 0.85rem;
  animation: riseIn 1s ease 0.18s both;
}

.hero-lead {
  max-width: 38ch;
  color: rgba(232, 242, 239, 0.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  animation: riseIn 1s ease 0.26s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 1s ease 0.34s both;
}

.hero .btn-primary {
  background: var(--brass);
  color: #1a140c;
}

.hero .btn-primary:hover {
  background: #c4a574;
  color: #1a140c;
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero .btn-secondary:hover {
  background: #fff;
  color: var(--ink);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-1.5%);
  }
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

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

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.quote-rail {
  background: var(--ink);
  color: #e8eef2;
  padding: 3.5rem 0;
}

.quote-rail .wrap {
  display: grid;
  gap: 1.5rem;
}

.quote-rail blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.35;
  max-width: 28ch;
}

.quote-rail cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(232, 238, 242, 0.72);
}

.course-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.course-preview-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.course-preview-media {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
}

.course-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.benefit-list li {
  padding-left: 1.35rem;
  border-left: 3px solid var(--accent);
}

.benefit-list h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.benefit-list p {
  color: var(--muted);
  margin: 0;
}

.trust-band {
  border-block: 1px solid var(--line);
  background: rgba(251, 252, 253, 0.7);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--accent-deep);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(13, 107, 98, 0.12), transparent 50%),
    var(--surface);
  border: 1px solid var(--line);
  padding: 2.5rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1.4fr auto;
}

.cta-panel h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.35rem;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

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

.page-hero-full {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #f4f8f7;
  overflow: hidden;
}

.page-hero-full .hero-media {
  position: absolute;
  inset: 0;
}

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

.page-hero-full .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12, 28, 32, 0.88), rgba(12, 28, 32, 0.35));
}

.page-hero-full .hero-content {
  padding: 3.5rem 0 2.75rem;
}

.page-hero-full h1 {
  color: #f4f8f7;
  max-width: 16ch;
}

.page-hero-full p {
  color: rgba(232, 242, 239, 0.88);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.course-tile {
  display: grid;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.course-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.course-tile h3 {
  font-size: 1.2rem;
  margin: 0;
}

.course-tile p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.course-tile:hover h3 {
  color: var(--accent-deep);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.prose h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.prose li {
  margin-bottom: 0.45rem;
}

.modules {
  display: grid;
  gap: 1rem;
}

.module {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
}

.module-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-tier.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(13, 107, 98, 0.08), transparent 40%),
    var(--surface);
}

.price-tier h2 {
  font-size: 1.35rem;
  margin: 0;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: -0.03em;
}

.price-amount span {
  font-size: 0.95rem;
  color: var(--muted);
  font-family: var(--font-body);
}

.price-tier ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.review-stack {
  display: grid;
  gap: 1.5rem;
}

.review {
  border-left: 3px solid var(--brass);
  padding: 0.25rem 0 0.25rem 1.25rem;
}

.review p {
  margin-bottom: 0.65rem;
}

.review-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-long {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
}

.stars {
  color: var(--brass);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.blog-list {
  display: grid;
  gap: 2rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.35rem;
  text-decoration: none;
  color: inherit;
  align-items: start;
}

.blog-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-item h2 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.blog-item p {
  color: var(--muted);
  margin: 0;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.article-cover {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 420px;
}

.article-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.contact-card address {
  font-style: normal;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 650;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.field-error {
  color: var(--danger);
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.form-status {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}

.form-status-success {
  background: #e5f3ea;
  color: var(--ok);
  border: 1px solid #b7d9c4;
}

.form-status-error {
  background: #f8e8e8;
  color: var(--danger);
  border: 1px solid #e4bcbc;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 0;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item button span {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-panel {
  padding: 0 0 1rem;
  color: var(--muted);
}

.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin: 1.5rem 0;
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--paper-2);
  font-weight: 700;
}

.site-footer {
  margin-top: 3rem;
  background: #122029;
  color: rgba(232, 238, 242, 0.86);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.footer-tag {
  color: rgba(232, 238, 242, 0.7);
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
}

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

.footer-links a,
.site-footer a {
  color: rgba(232, 238, 242, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-address {
  font-style: normal;
  margin-bottom: 0.75rem;
  color: rgba(232, 238, 242, 0.78);
}

.footer-base {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(232, 238, 242, 0.55);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 720px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.cookie-banner-inner {
  padding: 1.15rem 1.25rem;
  display: grid;
  gap: 1rem;
}

.cookie-banner-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 0.2rem;
  color: var(--accent-deep);
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent);
}

@media (max-width: 960px) {
  .course-preview,
  .contact-layout,
  .grid-3,
  .price-grid,
  .footer-grid,
  .trust-grid,
  .cta-panel,
  .blog-item {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(251, 252, 253, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.25rem;
  }

  .nav-list a {
    display: block;
    padding: 0.7rem 0.35rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
