.course-page {
  background: #05080c;
  color: #f5f7fa;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.course-page-muted {
  background: #0a0f15;
}

.course-wrap {
  width: min(1480px, calc(100% - clamp(2rem, 8vw, 9rem)));
  margin: 0 auto;
}

.course-hero,
.course-detail-hero,
.course-learning-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(79, 109, 190, .22), transparent 34rem),
    linear-gradient(135deg, #030507 0%, #08101a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.course-hero-compact {
  padding-bottom: 4.5rem;
}

.course-hero-grid,
.course-detail-grid,
.course-learning-heading,
.course-content-grid,
.course-lesson-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
}

.course-hero-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.course-detail-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, .7fr);
  align-items: start;
}

.course-learning-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.course-content-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(17rem, .65fr);
  align-items: start;
}

.course-lesson-layout {
  grid-template-columns: minmax(15rem, .55fr) minmax(0, 1.65fr);
  align-items: start;
}

.course-kicker,
.course-lesson-number {
  color: #8faeff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.course-page h1,
.course-page h2,
.course-page h3,
.course-page p {
  margin-top: 0;
}

.course-page h1 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 6vw, 6.6rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.course-page h2 {
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.course-lead {
  max-width: 48rem;
  color: #c8d0da;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.7;
}

.course-hero-actions {
  display: flex;
  justify-content: flex-end;
}

.course-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: transparent;
  color: #f5f7fa;
  font: inherit;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.course-button:hover {
  border-color: #8faeff;
  color: #8faeff;
}

.course-button-primary {
  border-color: #8faeff;
  background: #8faeff;
  color: #030507;
}

.course-button-primary:hover {
  background: #aec2ff;
  color: #030507;
}

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

.course-section-heading > p {
  max-width: 34rem;
  color: #9ca8b7;
  line-height: 1.65;
}

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

.course-card,
.course-access-panel,
.course-summary-panel,
.course-module,
.course-empty,
.course-resource-panel {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .025);
}

.course-card {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.course-card h2,
.course-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.1vw, 2.25rem);
  line-height: 1.1;
}

.course-card h3 a {
  color: inherit;
  text-decoration: none;
}

.course-card > p {
  color: #aeb8c5;
  line-height: 1.65;
}

.course-card-meta,
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.3rem;
}

.course-card-meta span,
.course-tags span,
.course-status,
.course-lock {
  display: inline-flex;
  padding: .35rem .58rem;
  border: 1px solid rgba(143, 174, 255, .35);
  border-radius: 999px;
  color: #b8c8f4;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.course-card-facts,
.course-summary-panel dl {
  margin: auto 0 1.6rem;
}

.course-card-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.course-card-facts dt,
.course-summary-panel dt {
  color: #7f8b99;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.course-card-facts dd,
.course-summary-panel dd {
  margin: .35rem 0 0;
  color: #eef2f7;
}

.course-text-link,
.course-back,
.course-lesson-navigation a {
  color: #c9d5fa;
  font-weight: 700;
  text-decoration: none;
}

.course-text-link:hover,
.course-back:hover,
.course-lesson-navigation a:hover {
  color: #8faeff;
}

.course-back {
  display: inline-block;
  margin-bottom: 2.5rem;
}

.course-access-panel,
.course-summary-panel {
  padding: 1.6rem;
}

.course-access-panel p,
.course-summary-panel p {
  color: #aeb8c5;
  line-height: 1.65;
}

.course-access-panel .course-button {
  width: 100%;
  margin-top: .7rem;
}

.course-summary-panel dl {
  margin: 0;
}

.course-summary-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.course-prose {
  color: #c8d0da;
  font-size: 1.03rem;
  line-height: 1.8;
}

.course-prose h2,
.course-prose h3 {
  color: #f5f7fa;
}

.course-module-list {
  display: grid;
  gap: 1.15rem;
}

.course-module {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.course-module-heading {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.course-module-heading > span {
  color: #8faeff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9rem;
}

.course-module-heading h2,
.course-module-heading h3 {
  margin-bottom: .45rem;
  font-size: 1.45rem;
}

.course-module-heading p {
  margin-bottom: 0;
  color: #919dac;
  line-height: 1.6;
}

.course-lesson-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-lesson-list li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.course-lesson-list li > span:first-child {
  color: #8290a2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.course-lesson-list li small {
  color: #7f8b99;
}

.course-lesson-list li a {
  color: #b7c7f3;
  text-decoration: none;
}

.course-lesson-list li.is-complete > span:first-child,
.course-status-complete {
  color: #7ee2b8;
}

.course-progress {
  margin: 1.4rem 0;
}

.course-progress-wide {
  max-width: 50rem;
  margin-top: 2.2rem;
}

.course-progress-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .55rem;
  color: #aeb8c5;
  font-size: .82rem;
}

.course-progress-track {
  height: .35rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.course-progress-track span {
  display: block;
  height: 100%;
  background: #8faeff;
}

.course-enrollment-card .course-button {
  margin-top: auto;
}

.course-empty {
  grid-column: 1 / -1;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.course-lesson-sidebar {
  position: sticky;
  top: 2rem;
  padding-right: 1.5rem;
}

.course-lesson-sidebar h2 {
  font-size: 1.5rem;
}

.course-lesson-content {
  min-width: 0;
}

.course-lesson-content h1 {
  max-width: 22ch;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.course-resource-panel {
  margin: 2rem 0;
  padding: 1.4rem;
}

.course-completion-panel {
  margin: 3rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.course-lesson-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.course-lesson-navigation > div:last-child {
  text-align: right;
}

@media (max-width: 980px) {
  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-detail-grid,
  .course-content-grid,
  .course-lesson-layout {
    grid-template-columns: 1fr;
  }

  .course-lesson-sidebar {
    position: static;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .course-hero-grid,
  .course-learning-heading {
    grid-template-columns: 1fr;
  }

  .course-hero-actions {
    justify-content: flex-start;
  }

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

  .course-section-heading {
    display: block;
  }

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

  .course-lesson-list li {
    grid-template-columns: 2.2rem minmax(0, 1fr);
  }

  .course-lesson-list li small,
  .course-lesson-list li a,
  .course-lock {
    grid-column: 2;
  }

  .course-lesson-navigation {
    grid-template-columns: 1fr;
  }

  .course-lesson-navigation > div:last-child {
    text-align: left;
  }
}

/* AXIS COURSES LANDING V0.3 START */

.axc-page {
  background: #f6f8fa;
  color: #030507;
}

.axc-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.axc-eyebrow,
.axc-kicker {
  margin: 0 0 14px;
  color: #0b6ea8;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.axc-catalog-hero {
  padding: 96px 0 72px;
  background:
    linear-gradient(
      125deg,
      #030507 0%,
      #080d13 58%,
      #151a20 100%
    );
  color: #fff;
}

.axc-catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
}

.axc-catalog-heading h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.axc-catalog-heading > div > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.axc-catalog-note {
  padding: 24px 0 4px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.axc-catalog-note strong,
.axc-catalog-note span {
  display: block;
}

.axc-catalog-note strong {
  margin-bottom: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.axc-catalog-note span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.axc-catalog-section {
  padding: 74px 0 110px;
}

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

.axc-section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.axc-course-count {
  color: #617386;
  font-size: 0.88rem;
}

.axc-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.axc-course-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe3e9;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(3, 5, 7, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.axc-course-card:hover {
  transform: translateY(-4px);
  border-color: #9dbfd4;
  box-shadow: 0 24px 58px rgba(3, 5, 7, 0.12);
}

.axc-card-link {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.axc-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px 0;
}

.axc-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.axc-status-soon {
  background: #eef5f8;
  color: #15577f;
  border: 1px solid #b8d1df;
}

.axc-status-open {
  background: #e9f6ed;
  color: #24633a;
  border: 1px solid #b7dbc2;
}

.axc-card-format {
  color: #687b8c;
  font-size: 0.78rem;
}

.axc-card-body {
  flex: 1;
  padding: 54px 28px 42px;
}

.axc-card-category {
  margin: 0 0 13px;
  color: #0b6ea8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.axc-card-body h3 {
  max-width: 520px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.axc-card-subtitle {
  max-width: 500px;
  margin: 18px 0 34px;
  color: #526b80;
  font-size: 1rem;
  line-height: 1.65;
}

.axc-card-instructor {
  padding-top: 24px;
  border-top: 1px solid #e2e8ed;
}

.axc-card-instructor strong,
.axc-card-instructor span {
  display: block;
}

.axc-card-instructor strong {
  margin-bottom: 7px;
  font-size: 0.95rem;
}

.axc-card-instructor span {
  color: #65798a;
  font-size: 0.82rem;
  line-height: 1.5;
}

.axc-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 28px;
  background: #f2f6f8;
  border-top: 1px solid #e0e7ec;
}

.axc-card-footer div span,
.axc-card-footer div strong {
  display: block;
}

.axc-card-footer div span {
  margin-bottom: 4px;
  color: #718291;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.axc-card-footer div strong {
  font-size: 0.82rem;
}

.axc-card-arrow {
  font-size: 1.6rem;
}

.axc-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  background: #fff;
  border-bottom: 1px solid #dce5ea;
}

.axc-detail-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: #edf3f6;
  content: "";
}

.axc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 76px;
  align-items: center;
}

.axc-hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}

.axc-program-label {
  color: #0b6ea8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.axc-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #030507;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 6.7vw, 6.3rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.axc-hero-subtitle {
  margin: 27px 0 18px;
  color: #4f687c;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.axc-hero-byline {
  margin: 0;
  color: #526a7d;
}

.axc-hero-byline strong {
  color: #030507;
}

.axc-course-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 42px 0 34px;
  border-top: 1px solid #dce4e9;
  border-bottom: 1px solid #dce4e9;
}

.axc-fact {
  padding: 18px 16px 18px 0;
}

.axc-fact + .axc-fact {
  padding-left: 18px;
  border-left: 1px solid #dce4e9;
}

.axc-fact span,
.axc-fact strong {
  display: block;
}

.axc-fact span {
  margin-bottom: 6px;
  color: #728391;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.axc-fact strong {
  font-size: 0.85rem;
  line-height: 1.35;
}

.axc-primary-action,
.axc-submit {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid #030507;
  border-radius: 999px;
  background: #030507;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.axc-primary-action:hover,
.axc-submit:hover {
  background: #0b6ea8;
  transform: translateY(-1px);
}

.axc-release-note {
  margin: 15px 0 0;
  color: #708190;
  font-size: 0.78rem;
}

.axc-portrait-panel {
  position: relative;
  max-width: 390px;
  margin-left: auto;
}

.axc-portrait-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 210px 210px 24px 24px;
  background: #dfe9ee;
  box-shadow: 0 28px 62px rgba(3, 5, 7, 0.17);
}

.axc-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.axc-portrait-caption {
  position: relative;
  width: calc(100% - 24px);
  margin: -34px auto 0;
  padding: 18px 20px;
  border: 1px solid #d6e1e7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px rgba(3, 5, 7, 0.1);
}

.axc-portrait-caption strong,
.axc-portrait-caption span {
  display: block;
}

.axc-portrait-caption strong {
  margin-bottom: 6px;
  font-size: 0.93rem;
}

.axc-portrait-caption span {
  color: #64798b;
  font-size: 0.75rem;
  line-height: 1.45;
}

.axc-introduction,
.axc-curriculum-section,
.axc-instructor-section {
  padding: 96px 0;
}

.axc-curriculum-section {
  background: #fff;
  border-top: 1px solid #dce5ea;
  border-bottom: 1px solid #dce5ea;
}

.axc-instructor-section {
  background: #eef3f6;
}

.axc-content-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 76px;
}

.axc-section-marker {
  padding-top: 8px;
}

.axc-section-marker span {
  display: block;
  margin-bottom: 14px;
  color: #0b6ea8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.axc-section-marker p {
  margin: 0;
  color: #6a7d8e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.axc-reading-column {
  max-width: 850px;
}

.axc-reading-column > h2,
.axc-section-title-row h2,
.axc-instructor-copy h2,
.axc-interest-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.axc-reading-column > p {
  color: #536c7f;
  font-size: 1.02rem;
  line-height: 1.85;
}

.axc-reading-column .axc-lead {
  margin-top: 32px;
  color: #294b66;
  font-size: 1.22rem;
}

.axc-outcome-box {
  margin-top: 40px;
  padding: 28px 30px;
  border-left: 4px solid #0b6ea8;
  background: #fff;
  box-shadow: 0 16px 38px rgba(3, 5, 7, 0.06);
}

.axc-outcome-box p:last-child {
  margin: 0;
  color: #385a73;
  line-height: 1.75;
}

.axc-section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.axc-duration-summary {
  min-width: 130px;
  padding-left: 20px;
  border-left: 1px solid #d4dfe5;
}

.axc-duration-summary span,
.axc-duration-summary strong {
  display: block;
}

.axc-duration-summary span {
  margin-bottom: 5px;
  color: #728491;
  font-size: 0.72rem;
}

.axc-duration-summary strong {
  font-size: 1.35rem;
}

.axc-module {
  overflow: hidden;
  border: 1px solid #d9e3e8;
  border-radius: 20px;
}

.axc-module-heading {
  padding: 26px 30px;
  background: #030507;
  color: #fff;
}

.axc-module-heading h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
}

.axc-module-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  line-height: 1.55;
}

.axc-lesson-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.axc-lesson-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 23px 28px;
  background: #fff;
}

.axc-lesson-list li + li {
  border-top: 1px solid #e1e8ec;
}

.axc-lesson-number {
  color: #0b6ea8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.axc-lesson-copy strong {
  display: block;
  margin-bottom: 7px;
}

.axc-lesson-copy p {
  margin: 0;
  color: #687d8d;
  font-size: 0.87rem;
  line-height: 1.55;
}

.axc-lesson-time {
  color: #738491;
  font-size: 0.78rem;
  white-space: nowrap;
}

.axc-instructor-layout {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.axc-instructor-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: #dbe6eb;
  box-shadow: 0 20px 46px rgba(3, 5, 7, 0.12);
}

.axc-instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.axc-instructor-role {
  margin: 18px 0 5px;
  color: #0b6ea8;
  font-weight: 750;
}

.axc-instructor-institution {
  margin: 0 0 30px;
  color: #65798a;
}

.axc-bio p {
  color: #4f687b;
  line-height: 1.78;
}

.axc-expertise {
  margin: 28px 0;
  color: #173e5e;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.7;
}

.axc-instructor-copy blockquote {
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #c9d7df;
  color: #294d69;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
}

.axc-interest-section {
  padding: 100px 0;
  background: #030507;
  color: #fff;
}

.axc-interest-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.65fr);
  gap: 92px;
  align-items: start;
}

.axc-interest-copy h2 {
  color: #fff;
}

.axc-interest-copy > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}

.axc-interest-note {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.axc-interest-note strong,
.axc-interest-note span {
  display: block;
}

.axc-interest-note strong {
  margin-bottom: 8px;
}

.axc-interest-note span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.55;
}

.axc-form-panel {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  color: #030507;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.22);
}

.axc-field {
  margin-bottom: 18px;
}

.axc-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 750;
}

.axc-field input,
.axc-field textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd8df;
  border-radius: 10px;
  background: #f8fafb;
  color: #030507;
  font: inherit;
}

.axc-field textarea {
  resize: vertical;
}

.axc-field input:focus,
.axc-field textarea:focus {
  border-color: #0b6ea8;
  outline: 3px solid rgba(11, 110, 168, 0.12);
}

.axc-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 22px 0;
  color: #51697b;
  font-size: 0.78rem;
  line-height: 1.5;
}

.axc-consent input {
  margin-top: 3px;
}

.axc-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.axc-privacy {
  margin: 14px 0 0;
  color: #748592;
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.axc-form-success {
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid #a8d4b4;
  border-radius: 10px;
  background: #edf8f0;
  color: #275f37;
  font-size: 0.85rem;
  line-height: 1.55;
}

.axc-form-panel .errorlist {
  margin: 7px 0 0;
  padding: 0;
  color: #a23434;
  font-size: 0.75rem;
  list-style: none;
}

.axc-empty {
  grid-column: 1 / -1;
  padding: 60px;
  border: 1px dashed #b9c9d3;
  border-radius: 20px;
  text-align: center;
}

@media (max-width: 940px) {
  .axc-catalog-heading,
  .axc-hero-grid,
  .axc-interest-grid {
    grid-template-columns: 1fr;
  }

  .axc-detail-hero::before {
    display: none;
  }

  .axc-portrait-panel {
    width: min(100%, 380px);
    margin: 0;
  }

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

  .axc-fact:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #dce4e9;
  }

  .axc-fact:nth-child(4) {
    border-top: 1px solid #dce4e9;
  }

  .axc-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .axc-section-marker {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .axc-section-marker span {
    margin: 0;
  }
}

@media (max-width: 720px) {
  .axc-container {
    width: min(100% - 30px, 1180px);
  }

  .axc-catalog-hero,
  .axc-detail-hero {
    padding: 62px 0 54px;
  }

  .axc-catalog-heading h1,
  .axc-hero-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }

  .axc-course-grid,
  .axc-instructor-layout {
    grid-template-columns: 1fr;
  }

  .axc-card-link {
    min-height: 0;
  }

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

  .axc-card-arrow {
    display: none;
  }

  .axc-course-facts {
    grid-template-columns: 1fr;
  }

  .axc-fact,
  .axc-fact + .axc-fact {
    padding: 14px 0;
    border-top: 1px solid #dce4e9;
    border-left: 0;
  }

  .axc-course-facts .axc-fact:first-child {
    border-top: 0;
  }

  .axc-introduction,
  .axc-curriculum-section,
  .axc-instructor-section,
  .axc-interest-section {
    padding: 68px 0;
  }

  .axc-section-title-row {
    display: block;
  }

  .axc-duration-summary {
    margin-top: 22px;
    padding-left: 0;
    border-left: 0;
  }

  .axc-lesson-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 20px;
  }

  .axc-lesson-time {
    grid-column: 2;
  }

  .axc-form-panel {
    padding: 24px 20px;
  }
}

/* AXIS COURSES LANDING V0.3 END */

/* AXIS COURSE CERTIFICATE REFINEMENT START */

.axc-certificate-strip {
  padding: 0 0 78px;
  background: #f6f8fa;
}

.axc-certificate-panel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid #d5dfe5;
  border-bottom: 1px solid #d5dfe5;
}

.axc-certificate-mark {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #030507;
  color: #f5f7fa;
  font-size: 1rem;
  font-weight: 800;
}

.axc-certificate-copy .axc-kicker {
  margin-bottom: 6px;
}

.axc-certificate-copy h2 {
  margin: 0 0 8px;
  color: #030507;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.axc-certificate-copy > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #536c7f;
  font-size: 0.9rem;
  line-height: 1.7;
}

.axc-footer-breath {
  width: 100%;
  height: clamp(82px, 7vw, 112px);
  background: #030507;
}

@media (max-width: 720px) {
  .axc-certificate-strip {
    padding-bottom: 58px;
  }

  .axc-certificate-panel {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .axc-certificate-mark {
    width: 38px;
    height: 38px;
  }

  .axc-footer-breath {
    height: 66px;
  }
}

/* AXIS COURSE CERTIFICATE REFINEMENT END */

/* AXIS CATALOG FEATURED HERO START */

.axc-catalog-featured {
  min-height: 680px;
}

.axc-catalog-featured .axc-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.2vw, 6rem);
}

.axc-catalog-featured .axc-portrait-panel {
  transform: translateY(10px);
}

.axc-catalog-featured + .axc-catalog-section {
  padding-top: 82px;
}

@media (max-width: 940px) {
  .axc-catalog-featured {
    min-height: 0;
  }

  .axc-catalog-featured .axc-portrait-panel {
    transform: none;
  }
}

@media (max-width: 720px) {
  .axc-catalog-featured .axc-hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .axc-catalog-featured + .axc-catalog-section {
    padding-top: 62px;
  }
}

/* AXIS CATALOG FEATURED HERO END */
