:root {
  --ink: #102027;
  --ink-soft: #243941;
  --muted: #63747c;
  --paper: #f6f7f2;
  --white: #ffffff;
  --teal: #00a99d;
  --teal-dark: #08766f;
  --gold: #f0b84a;
  --coral: #ef6f5e;
  --blue: #2e77d0;
  --line: rgba(16, 32, 39, 0.13);
  --shadow: 0 22px 60px rgba(16, 32, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

b,
strong {
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 44px rgba(16, 32, 39, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  border-radius: 8px;
  color: rgba(16, 32, 39, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 9px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(0, 169, 157, 0.1);
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 24px 72px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 28, 0.92) 0%, rgba(8, 22, 28, 0.78) 42%, rgba(8, 22, 28, 0.34) 78%, rgba(8, 22, 28, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 22, 28, 0.14), rgba(8, 22, 28, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 790px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 14px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0, 169, 157, 0.35);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.light {
  background: var(--white);
  color: var(--ink);
}

.outline-dark {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-proof {
  display: grid;
  width: min(860px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  padding: 18px;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 1.18rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.answer-strip {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -38px auto 0;
}

.sidebar-ad {
  position: fixed;
  z-index: 18;
  top: 110px;
  right: max(18px, calc((100vw - 1180px) / 2 - 166px));
  display: grid;
  width: 300px;
  max-height: calc(100vh - 132px);
  gap: 14px;
  overflow: hidden;
  border: 2px solid rgba(240, 184, 74, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 32, 39, 0.98), rgba(8, 118, 111, 0.94)),
    var(--ink);
  box-shadow: 0 26px 70px rgba(16, 32, 39, 0.24);
  color: var(--white);
  padding: 16px;
}

.ad-badge {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-message span {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-message h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.72rem;
  line-height: 0.98;
}

.ad-message p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.ad-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ad-meta span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 8px 10px;
}

.ad-actions {
  display: grid;
  gap: 10px;
}

.ad-actions .button {
  min-height: 44px;
  white-space: nowrap;
}

.answer-strip div,
.feature-card,
.audience-grid article,
.path-card,
.project-card,
.tool-grid div,
.media-panel,
.resource-panel,
.dashboard-card,
.community-card,
.success-grid article,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.answer-strip div {
  padding: 20px;
}

.answer-strip span {
  display: block;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.answer-strip p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.section,
.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading:has(.eyebrow) {
  grid-template-columns: 0.7fr 1.5fr;
}

.section-heading h2 {
  max-width: 920px;
}

.section-heading h2,
.media-panel h2,
.resource-panel h2,
.dashboard-card h2,
.community-card h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.architect-note .section-heading {
  justify-items: end;
}

.architect-note .section-heading h2 {
  max-width: none;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.18;
  text-align: right;
  white-space: nowrap;
}

.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.feature-grid,
.audience-grid,
.path-grid,
.project-grid,
.tool-grid,
.blog-grid,
.success-grid,
.trainer-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.path-card,
.project-card {
  padding: 24px;
}

.feature-card h3,
.audience-grid h3,
.path-card h3,
.project-card h3,
.success-grid h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.feature-card p,
.audience-grid p,
.path-card li,
.project-card p,
.tool-grid span,
.community-card li,
.faq-list p,
.contact-copy p {
  color: var(--muted);
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience-grid article {
  padding: 22px;
}

.audience-grid p {
  margin: 10px 0 0;
  font-size: 0.93rem;
}

.path-grid {
  grid-template-columns: repeat(4, 1fr);
}

.path-card {
  min-height: 390px;
  border-top: 4px solid var(--blue);
}

.path-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(46, 119, 208, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.path-card h3 {
  margin-top: 24px;
}

.path-card ul,
.community-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.path-card li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-weight: 700;
}

.card-button {
  width: 100%;
  margin-top: 24px;
  background: var(--ink);
  color: var(--white);
}

.accent-teal {
  border-top-color: var(--teal);
}

.accent-teal span {
  background: rgba(0, 169, 157, 0.12);
  color: var(--teal-dark);
}

.accent-gold {
  border-top-color: var(--gold);
}

.accent-gold span {
  background: rgba(240, 184, 74, 0.16);
  color: #9b6509;
}

.accent-coral {
  border-top-color: var(--coral);
}

.accent-coral span {
  background: rgba(239, 111, 94, 0.13);
  color: #b83f30;
}

.roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  padding: 24px;
}

.roadmap span {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-weight: 800;
  padding: 10px 14px;
}

.roadmap span:not(:last-child)::after {
  content: "->";
  color: var(--gold);
  font-weight: 900;
  margin-left: 12px;
}

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

.featured-project {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(0, 169, 157, 0.11), rgba(240, 184, 74, 0.12)),
    var(--white);
}

.tags,
.resource-tags,
.media-list,
.career-topics,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tags span,
.resource-tags span,
.media-list span,
.career-topics span,
.contact-options span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcfa;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 10px;
}

.project-meta {
  margin-top: 18px;
  font-weight: 800;
}

.tool-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tool-grid div {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 20px;
}

.tool-grid b {
  font-size: 1rem;
}

.tool-grid span {
  font-size: 0.92rem;
}

.media-resources,
.dashboard-community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.media-panel,
.resource-panel,
.dashboard-card,
.community-card {
  padding: 28px;
}

.resource-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 22px;
}

.career-topics {
  margin-top: 22px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.dashboard-grid span,
.blog-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink-soft);
  font-weight: 800;
  padding: 13px;
}

.community-card li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-weight: 800;
}

.blog-grid {
  grid-template-columns: repeat(4, 1fr);
}

.blog-grid a:hover {
  border-color: rgba(0, 169, 157, 0.42);
  color: var(--teal-dark);
}

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

.success-grid article {
  padding: 24px;
}

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

.trainer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 169, 157, 0.09), rgba(240, 184, 74, 0.11)),
    var(--white);
  box-shadow: var(--shadow);
  padding: 26px;
}

.trainer-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
}

.trainer-avatar.accent {
  background: var(--teal-dark);
}

.trainer-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trainer-card h3 {
  margin: 6px 0 8px;
  font-size: 1.45rem;
}

.trainer-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.success-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  font-weight: 700;
}

.success-grid span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding-bottom: 96px;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy p {
  margin: 18px 0 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #30464e;
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 169, 157, 0.14);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 26px 0;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

.protected-page {
  -webkit-touch-callout: none;
}

.protected-content {
  user-select: none;
  -webkit-user-select: none;
}

.curriculum-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 128px 0 0;
}

.curriculum-hero {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 169, 157, 0.12), rgba(46, 119, 208, 0.1), rgba(240, 184, 74, 0.13)),
    var(--white);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 64px);
}

.curriculum-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
}

.curriculum-hero p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.curriculum-section {
  padding-top: 72px;
}

.curriculum-summary,
.stack-grid,
.module-list,
.deliverable-grid {
  display: grid;
  gap: 16px;
}

.curriculum-summary {
  grid-template-columns: 0.8fr 1.2fr;
}

.curriculum-summary article,
.stack-grid div,
.module-list article,
.teaching-pattern {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.curriculum-summary article,
.module-list article,
.teaching-pattern {
  padding: 26px;
}

.curriculum-summary h2,
.module-list h3,
.teaching-pattern h2 {
  margin: 0 0 16px;
}

.curriculum-summary ul,
.module-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.stack-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stack-grid div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.stack-grid span {
  color: var(--muted);
  font-weight: 700;
}

.module-list {
  grid-template-columns: repeat(2, 1fr);
}

.module-list article {
  border-top: 4px solid var(--teal);
}

.module-list article:nth-child(3n + 2) {
  border-top-color: var(--blue);
}

.module-list article:nth-child(3n) {
  border-top-color: var(--gold);
}

.module-list article > span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(0, 169, 157, 0.11);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 10px;
}

.module-list h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}

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

.module-details {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  padding-top: 16px;
}

.module-details b {
  display: block;
}

.deliverable-grid {
  grid-template-columns: repeat(5, 1fr);
}

.deliverable-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink-soft);
  font-weight: 800;
  padding: 16px;
}

.teaching-pattern {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.teaching-pattern ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

@media print {
  .protected-page * {
    visibility: hidden !important;
  }

  .protected-page::before {
    content: "Printing this protected curriculum page is disabled.";
    display: block;
    visibility: visible !important;
    color: #102027;
    font: 700 18px Inter, sans-serif;
    padding: 32px;
  }
}

@media (max-width: 1060px) {
  .audience-grid,
  .path-grid,
  .tool-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    padding: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 90vh;
    padding: 118px 18px 58px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 22, 28, 0.92), rgba(8, 22, 28, 0.62));
  }

  .hero-proof,
  .answer-strip,
  .feature-grid.three,
  .feature-grid.four,
  .audience-grid,
  .path-grid,
  .project-grid,
  .tool-grid,
  .media-resources,
  .dashboard-community,
  .blog-grid,
  .success-grid,
  .trainer-grid,
  .contact,
  .section-heading,
  .curriculum-summary,
  .module-list,
  .teaching-pattern {
    grid-template-columns: 1fr;
  }

  .answer-strip {
    margin-top: -24px;
  }

  .section,
  .contact {
    padding-top: 70px;
  }

  .architect-note .section-heading {
    justify-items: start;
  }

  .architect-note .section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    text-align: left;
    white-space: normal;
  }

  .path-card {
    min-height: auto;
  }

  .stack-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-project {
    grid-column: auto;
  }

  .contact-copy {
    position: static;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 1180px) {
  .sidebar-ad {
    position: relative;
    top: auto;
    right: auto;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    max-height: none;
    grid-template-columns: auto minmax(240px, 1fr) auto;
    align-items: center;
    margin: -28px auto 0;
    padding: 18px;
  }

  .ad-message h2 {
    font-size: clamp(1.65rem, 3vw, 2.6rem);
  }

  .ad-actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions,
  .resource-form {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ad-actions {
    grid-template-columns: 1fr;
  }

  .sidebar-ad {
    grid-template-columns: 1fr;
  }

  .ad-badge,
  .ad-meta {
    width: 100%;
  }

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

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

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

  .roadmap span {
    width: 100%;
    justify-content: space-between;
  }
}

.architect-note .architect-heading {
  display: block !important;
  text-align: right !important;
}

.architect-note .single-line-heading {
  display: inline-block !important;
  width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

@media (max-width: 900px) {
  .architect-note .architect-heading {
    text-align: left !important;
  }

  .architect-note .single-line-heading {
    display: block !important;
    width: auto !important;
    font-size: clamp(1.8rem, 7vw, 3rem) !important;
    text-align: left !important;
    white-space: normal !important;
  }
}
