@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Source+Sans+Pro:wght@400;600;700&display=swap");

:root {
  --blue-700: #006fa6;
  --blue-800: #005d8b;
  --blue-100: #e6f3fb;
  --ink: #1f2b3d;
  --muted: #5f6b7d;
  --line: #dfe5ec;
  --line-strong: #cdd6e1;
  --surface: #ffffff;
  --page: #f7f9fb;
  --footer: #153f4c;
  --footer-text: #d4e0e4;
  --font-source: "Source Sans Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-open: "Open Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  font-family: var(--font-source);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-source);
  font-size: 14px;
  line-height: 20px;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  fill: none;
}

.site-header {
  height: 69px;
  background: var(--surface);
  border-bottom: 1px solid #f2f4f7;
}

.site-header__inner {
  width: min(1200px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.launcher__brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand {
  width: 132px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 132px;
  height: 41px;
  display: block;
  object-fit: contain;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 3px solid #087cba;
  border-radius: 50%;
  color: #087cba;
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.logo-word {
  display: inline-flex;
  align-items: baseline;
  color: #0f1720;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1;
}

.logo-word span {
  color: #087cba;
  font-weight: 700;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-nav button {
  min-height: 32px;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #667085;
  font-family: var(--font-source);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
}

.chevron-down {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex: 0 0 20px;
}

.chevron-down::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translate(-50%, -65%) rotate(45deg);
}

.header-menu-button {
  width: 38px;
  height: 38px;
  display: none;
  place-items: center;
  flex: 0 0 auto;
  padding: 8px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #ffffff;
  color: #344054;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  cursor: pointer;
}

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

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #667085;
}

.header-actions > button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #5d6b82;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.header-actions > button svg {
  width: 20px;
  height: 20px;
}

.account-trigger {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.header-actions > .account-trigger {
  width: auto;
  display: inline-flex;
  padding: 4px 0;
}

.avatar {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(185, 207, 225, 0.5), rgba(208, 213, 221, 0.5));
  color: #475467;
  font-family: var(--font-source);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.contact {
  min-height: 69px;
  padding-left: 16px;
  border-left: 1px solid #dee2e6;
  display: grid;
  align-content: center;
  gap: 2px;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--font-open);
  font-size: 14px;
  line-height: 20px;
}

.contact a {
  color: rgba(0, 0, 0, 0.6);
}

.student-center {
  min-height: 1080px;
}

.student-center__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
  display: grid;
  grid-template-columns: 266px minmax(0, 870px);
  gap: 32px;
  align-items: start;
}

.side-rail {
  display: grid;
  gap: 24px;
}

.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
}

.side-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #344054;
}

.side-card p {
  margin: 0 0 18px;
  color: #344054;
  font-size: 13px;
  line-height: 1.45;
}

.side-card--support {
  border-color: #eaecf0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: none;
}

.support-home-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.support-home-card__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.support-home-card__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-home-card h2 {
  margin: 0;
  color: #344054;
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.support-home-card p {
  margin: 0;
  color: #344054;
  font-family: var(--font-source);
  font-size: 14px;
  line-height: 20px;
}

.support-home-card .side-link {
  gap: 8px;
  min-height: 36px;
  padding: 8px 0;
  color: #004770;
  font-family: var(--font-source);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.support-home-card .side-link svg {
  width: 20px;
  height: 20px;
}

.course-tabs {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.course-tabs a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  color: #667085;
  font-family: var(--font-source);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease;
}

.course-tabs a:hover,
.course-tabs a[aria-current="page"] {
  background: #e7eff5;
  color: #004770;
}

.course-tabs a:focus-visible {
  outline: 0;
  background: #ffffff;
  color: #667085;
  box-shadow: 0 0 0 4px #f4ebff;
}

.side-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  color: #004770;
  font-family: var(--font-source);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.getting-started-card--responsive,
.responsive-course-tabs,
.responsive-side-cards {
  display: none;
}

.responsive-course-tabs {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  padding: 4px;
  border: 1px solid #f2f4f7;
  border-radius: 8px;
  background: #f9fafb;
  overflow: hidden;
}

.responsive-course-tabs a {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: #667085;
  font-family: var(--font-source);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease;
}

.responsive-course-tabs a:hover {
  color: #344054;
}

.responsive-course-tabs a[aria-current="page"] {
  background: #ffffff;
  color: #344054;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.06),
    0 1px 3px rgba(16, 24, 40, 0.1);
}

.responsive-course-tabs a:focus-visible {
  outline: 3px solid rgba(11, 117, 187, 0.35);
  outline-offset: 2px;
}

.responsive-side-card {
  min-height: 136px;
  padding: 16px;
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.responsive-side-card h2 {
  margin: 0 0 4px;
  color: #344054;
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.responsive-side-card p {
  margin: 0;
  color: #344054;
  line-height: 1.45;
}

.responsive-side-card--support {
  border-color: #eaecf0;
  border-radius: 12px;
  box-shadow: none;
}

.responsive-side-card--support .support-home-card h2 {
  margin: 0;
  line-height: 28px;
  font-weight: 600;
}

.responsive-side-card--support .support-home-card p {
  line-height: 20px;
}

.main-content h1 {
  margin: 0 0 24px;
  font-family: var(--font-open);
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  letter-spacing: 0;
  color: #1d2939;
}

.content-section {
  margin-top: 20px;
}

.content-section h2 {
  margin: 0 0 18px;
  font-family: var(--font-open);
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
  color: #344054;
}

.content-section--resources {
  margin-top: 42px;
}

.section-copy {
  margin: -5px 0 24px;
  color: #344054;
  font-size: 16px;
}

.card-stack {
  display: grid;
  gap: 24px;
}

.empty-course-state {
  width: 100%;
  padding: 38px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #333333;
  font-family: var(--font-source);
}

.empty-course-state h3 {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0;
}

.empty-course-state p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.empty-course-state__link {
  margin-top: 16px;
  color: #004770;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.course-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px 24px 24px;
}

.course-card__header {
  min-height: 48px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.course-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #344054;
}

.course-card__school {
  color: #1d70b8;
  font-size: 14px;
}

.course-card__body {
  display: grid;
  grid-template-columns: 212px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.course-visual {
  width: 212px;
  height: 140px;
  border-radius: 4px;
  background-image: url("student-center-desktop.png");
  background-repeat: no-repeat;
  background-size: 1265px 1800px;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.08);
}

.photo-pharmacy {
  background-position: -402px -304px;
}

.photo-pet {
  background-position: -402px -625px;
}

.photo-career {
  background-position: -402px -1047px;
}

.course-meta {
  margin: 4px 0 0;
  display: grid;
  align-content: start;
  gap: 18px;
}

.course-meta__group dt {
  margin: 0 0 2px;
  color: #475467;
  font-size: 13px;
}

.course-meta__group dd {
  margin: 0;
  color: #182230;
  font-weight: 700;
}

.course-card__actions {
  padding-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: #344054;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.button--primary {
  border-color: var(--blue-700);
  background: var(--blue-700);
  color: #ffffff;
}

.button--primary:hover {
  background: var(--blue-800);
}

.course-card__utility {
  margin-top: 2px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: #004b73;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.site-footer {
  background: var(--footer);
  color: var(--footer-text);
  padding: 78px 0 74px;
}

.site-footer__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr 1.45fr;
  gap: 54px;
}

.footer-column,
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: #00a9e8;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-column a,
.footer-legal a {
  margin-bottom: 6px;
  color: var(--footer-text);
  font-size: 13px;
  line-height: 1.35;
}

.socials {
  display: flex;
  gap: 14px;
  margin: 4px 0 30px;
}

.socials a {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-legal {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo .logo-mark {
  width: 26px;
  height: 26px;
  border-color: #ffffff;
  color: #ffffff;
  font-size: 19px;
}

.footer-logo .logo-word {
  color: #ffffff;
  font-size: 25px;
}

.footer-logo .logo-word span {
  color: #ffffff;
}

.footer-legal p {
  margin: 18px 0 0;
  color: rgba(212, 224, 228, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.launcher-page {
  min-height: 100vh;
  background: var(--page);
}

.launcher {
  width: min(1040px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0;
  display: grid;
  align-content: center;
}

.launcher__brand {
  margin-bottom: 28px;
}

.launcher h1 {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.launcher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.launcher-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.launcher-card span {
  color: var(--blue-700);
  font-weight: 700;
}

.launcher-card strong {
  color: #27364a;
  font-size: 20px;
  line-height: 1.3;
}

.getting-started-card {
  margin: 0 0 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid #eaecf0;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(16, 24, 40, 0.1),
    0 1px 2px rgba(16, 24, 40, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
}

.getting-started-card--responsive {
  display: none;
}

.getting-started-card__copy {
  max-width: 762px;
}

.getting-started-card h3 {
  margin: 0 0 4px;
  color: #101828;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.getting-started-card p {
  margin: 0;
  color: #394452;
  font-size: 14px;
  line-height: 20px;
}

.getting-started-card .button {
  min-width: 100px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.button:disabled {
  border-color: #b9cfe1;
  background: #e7eff5;
  color: #7ca5bd;
  box-shadow: none;
  cursor: not-allowed;
}

.onboarding-actions .button {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  font-family: var(--font-source);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.onboarding-actions .button svg {
  width: 20px;
  height: 20px;
}

.onboarding-actions .button--primary {
  border-color: #005584;
  background: #006399;
  color: #ffffff;
}

.onboarding-actions .button--primary:hover:not(:disabled) {
  border-color: #004770;
  background: #004770;
}

.onboarding-actions .button--primary:focus-visible {
  outline: none;
  border-color: #005584;
  background: #005584;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    0 0 0 4px #f4ebff;
}

.onboarding-actions .button--primary:disabled {
  border-color: #99c0d6;
  background: #99c0d6;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.onboarding-actions .button--secondary {
  border-color: #d0d5dd;
  background: #ffffff;
  color: #344054;
}

.onboarding-actions .button--secondary:hover:not(:disabled) {
  border-color: #d0d5dd;
  background: #f9fafb;
  color: #1d2939;
}

.onboarding-actions .button--secondary:focus-visible {
  outline: none;
  border-color: #d0d5dd;
  background: #ffffff;
  color: #344054;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    0 0 0 4px #f2f4f7;
}

.onboarding-actions .button--secondary:disabled {
  border-color: #eaecf0;
  background: #ffffff;
  color: #d0d5dd;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.success-toast {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 40;
  width: min(620px, calc(100% - 32px));
  min-height: 76px;
  transform: translateX(-50%);
  padding: 16px;
  border: 1px solid #6ce9a6;
  border-radius: 12px;
  background: #f6fef9;
  color: #027a48;
  box-shadow: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  font-family: var(--font-source);
}

.success-toast__icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #039855;
}

.success-toast__icon svg {
  width: 20px;
  height: 20px;
}

.success-toast__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.success-toast strong {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.success-toast p {
  margin: 0;
  color: #027a48;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

.success-toast button {
  width: 20px;
  height: 20px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: #039855;
  cursor: pointer;
}

.success-toast button svg {
  width: 20px;
  height: 20px;
}

.onboarding-shell {
  min-height: 820px;
  background: #f9fafb;
}

.onboarding-shell__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
  display: grid;
  justify-items: center;
}

.progress-steps {
  width: min(992px, 100%);
  min-height: 78px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.progress-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.progress-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 11px;
  left: calc(50% + 12px);
  right: calc(-50% + 12px);
  height: 2px;
  background: #eaecf0;
}

.progress-steps li.is-complete:not(:last-child)::after {
  background: #005584;
}

.progress-steps__marker {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f2f4f7;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  line-height: 1;
}

.progress-steps__marker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.progress-steps__marker svg {
  width: 14px;
  height: 14px;
}

.progress-steps li:hover .progress-steps__marker {
  background: #eaecf0;
}

.progress-steps .is-current {
  color: #004770;
}

.progress-steps .is-current .progress-steps__marker {
  background: #005584;
}

.progress-steps .is-current .progress-steps__marker::before {
  background: #ffffff;
}

.progress-steps .is-current:hover .progress-steps__marker {
  background: #004770;
}

.progress-steps .is-complete .progress-steps__marker {
  background: #005584;
  color: #ffffff;
}

.progress-steps .is-complete:hover .progress-steps__marker {
  background: #004770;
}

.progress-steps .is-complete .progress-steps__marker::before {
  content: none;
}

.onboarding-panel {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

.onboarding-panel--wide {
  max-width: 900px;
}

.onboarding-panel--support {
  max-width: 900px;
}

.onboarding-panel h1 {
  margin: 0 0 12px;
  color: #1d2939;
  font-family: var(--font-open);
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  letter-spacing: 0;
}

.onboarding-lede {
  max-width: 760px;
  margin: 0;
  color: #344054;
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 26px;
}

.video-frame {
  width: min(400px, 100%);
  aspect-ratio: 16 / 9;
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #101828;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.16);
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.onboarding-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.onboarding-actions .button {
  min-width: 200px;
}

.onboarding-actions--paired {
  display: grid;
  grid-template-columns: repeat(2, 200px);
}

.onboarding-actions--single .button {
  width: 200px;
}

.text-button {
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: #004b73;
  font-weight: 600;
  cursor: pointer;
}

.goal-fieldset {
  width: min(736px, 100%);
  margin: 34px auto 0;
  padding: 0;
  border: 0;
}

.goal-fieldset legend {
  margin: 0 0 16px;
  color: #344054;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.goal-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.goal-chip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid #d0d5dd;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  color: #344054;
  font-family: var(--font-source);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
}

.goal-chip:hover {
  border-color: #d0d5dd;
  background: #f2f4f7;
  color: #344054;
}

.goal-chip.is-selected {
  border-color: #98a2b3;
  background: #d0d5dd;
  color: #344054;
}

.goal-other {
  width: min(600px, 100%);
  margin: 24px auto 0;
  text-align: left;
}

.goal-other label {
  display: block;
  margin-bottom: 6px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.goal-other textarea {
  width: 100%;
  height: 72px;
  min-height: 72px;
  padding: 12px 14px;
  resize: none;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  color: #1d2939;
  font: inherit;
  line-height: 24px;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.goal-other.is-error textarea {
  border-color: #fda29b;
}

.goal-other p {
  margin: 6px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 20px;
}

.goal-other.is-error p {
  color: #f04438;
}

.support-card {
  width: min(900px, 100%);
  margin-top: 34px;
  min-height: 390px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 40px;
  align-items: center;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  background: #ffffff;
  text-align: left;
}

.support-card__copy {
  min-height: 334px;
  display: flex;
  flex-direction: column;
}

.support-card h2 {
  margin: 0;
  color: #344054;
  font-family: var(--font-open);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.support-categories {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-categories li {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px;
  border-right: 1px solid #d0d5dd;
  color: #344054;
  text-align: center;
}

.support-categories li:last-child {
  border-right: 0;
}

.support-categories span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #006399;
  flex: 0 0 auto;
}

.support-categories svg {
  width: 42px;
  height: 42px;
}

.support-categories strong {
  color: #344054;
  font-family: var(--font-open);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.consent-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  color: #344054;
  font-family: var(--font-source);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--blue-700);
}

.consent-fine-print {
  margin: 8px 0 0 28px;
  max-width: 520px;
  color: #344054;
  font-family: var(--font-source);
  font-size: 12px;
  line-height: 20px;
}

.consent-fine-print span,
.support-choice-fine-print span {
  color: #006399;
}

.support-card__image {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: end;
}

.support-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.onboarding-lede--support-choice {
  max-width: 790px;
}

.support-choice-layout {
  width: min(900px, 100%);
  margin-top: 36px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 528px) minmax(260px, 320px);
  gap: 24px;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.support-choice-list {
  display: grid;
  gap: 16px;
}

.support-choice-card {
  position: relative;
  width: 100%;
  min-height: 298px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #eaecf0;
  color: #344054;
  text-align: left;
  cursor: pointer;
}

.support-choice-card__input {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0;
}

.support-choice-card--compact {
  min-height: 92px;
}

.support-choice-card__copy {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 12px;
}

.support-choice-card__title {
  color: #344054;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.support-choice-card__body,
.support-choice-card__prompt {
  color: #344054;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.support-choice-card__prompt {
  margin-top: 4px;
}

.support-choice-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 32px;
}

.support-choice-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.support-choice-benefit span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #006399;
  flex: 0 0 auto;
}

.support-choice-benefit svg {
  width: 28px;
  height: 28px;
}

.support-choice-benefit strong {
  font-weight: 400;
}

.support-choice-fine-print {
  color: #344054;
  font-size: 12px;
  line-height: 18px;
}

.support-choice-radio {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid #d0d5dd;
  border-radius: 50%;
  background: #ffffff;
}

.support-choice-card__input:focus-visible + .support-choice-radio {
  outline: 3px solid rgba(11, 117, 187, 0.35);
  outline-offset: 3px;
}

.support-choice-card:hover {
  border-color: #99c0d6;
  box-shadow: none;
}

.support-choice-card:hover .support-choice-radio {
  border-color: #005584;
  background: #b9cfe1;
}

.support-choice-card.is-selected {
  border-width: 3px;
  border-color: #006399;
  box-shadow: none;
}

.support-choice-card.is-selected .support-choice-radio {
  border-color: #005584;
  background: #e7eff5;
}

.support-choice-card.is-selected .support-choice-radio::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #005584;
}

.support-choice-visual {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 343;
  display: grid;
  place-items: center;
}

.support-choice-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(16, 24, 40, 0.45);
}

.decision-modal {
  width: min(400px, 100%);
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0 20px 24px -4px rgba(16, 24, 40, 0.08),
    0 8px 8px -4px rgba(16, 24, 40, 0.03);
  text-align: center;
}

.decision-modal__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  border: 8px solid #e7eff5;
  border-radius: 50%;
  background: #b9cfe1;
  color: #004770;
}

.decision-modal__icon svg {
  width: 24px;
  height: 24px;
}

.decision-modal h2 {
  margin: 0 0 4px;
  color: #101828;
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.decision-modal p {
  margin: 0;
  color: #394452;
  font-family: var(--font-source);
  font-size: 14px;
  line-height: 20px;
}

.decision-modal__actions {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.decision-modal__actions .button {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  padding: 10px 18px;
  font-size: 16px;
  line-height: 24px;
}

.trial-page {
  min-height: 820px;
  background: #f7f9fb;
}

.trial-page__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.trial-back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: #004770;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.trial-course-header {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 344px;
  gap: 32px;
  align-items: center;
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trial-course-header__copy {
  min-width: 0;
}

.trial-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.trial-course-header h1,
.trial-start-panel h1,
.trial-success-panel h1 {
  margin: 0;
  color: #1d2939;
  font-family: var(--font-open);
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  letter-spacing: 0;
}

.trial-school {
  display: inline-flex;
  margin-top: 8px;
  color: #1d70b8;
  font-size: 15px;
  line-height: 22px;
}

.trial-course-header p,
.trial-start-panel p,
.trial-success-panel p {
  max-width: 660px;
  margin: 16px 0 0;
  color: #344054;
  font-size: 16px;
  line-height: 24px;
}

.trial-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trial-actions .button {
  min-height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.trial-course-header__media {
  min-width: 0;
}

.trial-course-header__media .course-visual,
.trial-summary-panel .course-visual {
  width: 100%;
  height: auto;
  aspect-ratio: 318 / 212;
  background-size: 1900px 2705px;
  background-position: -604px -456px;
}

.trial-active-band {
  margin-top: 20px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid #abefc6;
  border-radius: 8px;
  background: #f6fef9;
  color: #027a48;
}

.trial-active-band span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.trial-active-band strong {
  display: block;
  font-size: 15px;
  line-height: 22px;
}

.trial-active-band p {
  margin: 2px 0 0;
  color: #027a48;
  font-size: 14px;
  line-height: 20px;
}

.trial-detail-layout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trial-detail-panel,
.trial-summary-panel,
.trial-start-panel,
.trial-success-panel {
  border: 1px solid #dfe5ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trial-detail-panel {
  padding: 22px;
}

.trial-detail-panel h2,
.trial-summary-panel h2 {
  margin: 0 0 16px;
  color: #344054;
  font-family: var(--font-source);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.trial-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.trial-checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #344054;
}

.trial-checklist span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ecfdf3;
  color: #027a48;
}

.trial-checklist svg {
  width: 15px;
  height: 15px;
}

.trial-checklist strong {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.trial-meta-grid {
  margin: 0;
  display: grid;
  gap: 12px;
}

.trial-meta-grid div {
  display: grid;
  gap: 2px;
}

.trial-meta-grid dt {
  color: #667085;
  font-size: 13px;
  line-height: 18px;
}

.trial-meta-grid dd {
  margin: 0;
  color: #1d2939;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.progress-steps--trial {
  margin-bottom: 22px;
}

.trial-page--start .trial-page__inner,
.trial-page--success .trial-page__inner {
  width: min(980px, calc(100% - 32px));
}

.trial-start-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 304px;
  gap: 28px;
  align-items: start;
}

.trial-consent-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.trial-consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: #344054;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
}

.trial-consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue-700);
}

.trial-actions--footer {
  padding-top: 24px;
  border-top: 1px solid #eaecf0;
}

.trial-summary-panel {
  padding: 18px;
}

.trial-summary-panel h2 {
  margin: 16px 0 4px;
}

.trial-summary-panel p {
  margin: 0 0 18px;
  color: #1d70b8;
  font-size: 14px;
  line-height: 20px;
}

.trial-success-panel {
  padding: 36px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.trial-success-panel__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 8px solid #ecfdf3;
  border-radius: 50%;
  background: #abefc6;
  color: #027a48;
}

.trial-success-panel__icon svg {
  width: 28px;
  height: 28px;
}

.trial-success-summary {
  width: min(520px, 100%);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #eaecf0;
  border-radius: 8px;
  background: #fcfcfd;
  text-align: left;
}

.trial-actions--centered {
  justify-content: center;
}

:focus-visible {
  outline: 3px solid rgba(11, 117, 187, 0.35);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    height: 69px;
  }

  .site-header__inner {
    width: min(750px, calc(100% - 84px));
    min-height: 69px;
    padding: 0 16px;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .top-nav,
  .contact {
    display: none;
  }

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

  .header-actions {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .student-center__inner {
    width: min(750px, calc(100% - 84px));
    padding: 16px 0 48px;
    display: block;
  }

  .side-rail,
  .getting-started-card--desktop {
    display: none;
  }

  .main-content h1 {
    margin: 0;
  }

  .getting-started-card--responsive {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px 0 24px;
  }

  .getting-started-card--responsive .button {
    width: auto;
    min-width: 100px;
  }

  .getting-started-card h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .getting-started-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .responsive-course-tabs {
    display: grid;
    margin: 0 0 24px;
  }

  .main-content h1 + .responsive-course-tabs {
    margin-top: 24px;
  }

  .content-section {
    margin-top: 0;
  }

  .content-section h2 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .responsive-side-cards {
    display: grid;
    gap: 24px;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .onboarding-shell__inner {
    width: min(750px, calc(100% - 84px));
    padding: 32px 0 48px;
  }

  .onboarding-panel h1 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
  }

  .onboarding-lede {
    max-width: 718px;
    font-size: 18px;
    line-height: 26px;
  }

  .goal-fieldset {
    margin-top: 32px;
  }

  .support-card {
    width: min(718px, 100%);
    min-height: auto;
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .support-card__copy {
    min-height: auto;
  }

  .support-card h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .support-categories {
    margin-top: 24px;
  }

  .support-categories li {
    min-height: 86px;
    gap: 10px;
    padding: 0 14px;
  }

  .support-categories span {
    width: 44px;
    height: 44px;
  }

  .support-categories svg {
    width: 42px;
    height: 42px;
  }

  .support-categories strong {
    font-size: 16px;
    line-height: 24px;
  }

  .consent-row {
    margin-top: 32px;
    font-size: 16px;
    line-height: 24px;
  }

  .consent-row input {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }

  .consent-fine-print {
    margin-left: 28px;
    font-size: 12px;
    line-height: 20px;
  }

  .support-card__image {
    max-width: 320px;
    justify-self: center;
  }

  .support-choice-layout {
    width: min(528px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .support-choice-list {
    width: 100%;
  }

  .support-choice-visual {
    max-width: 329px;
  }

  .site-footer__inner {
    width: min(720px, calc(100% - 84px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
  }

  .footer-legal {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 440px) {
  body {
    font-size: 14px;
  }

  .site-header__inner,
  .student-center__inner,
  .onboarding-shell__inner,
  .site-footer__inner {
    width: calc(100% - 32px);
  }

  .site-header__inner {
    width: 100%;
    padding: 0 16px;
  }

  .brand,
  .brand-logo {
    width: 88px;
    height: 27px;
  }

  .logo-mark {
    width: 24px;
    height: 24px;
    border-width: 2px;
    font-size: 18px;
  }

  .logo-word {
    font-size: 22px;
  }

  .header-actions > a {
    font-size: 13px;
  }

  .student-center__inner {
    padding-top: 8px;
  }

  .main-content h1 {
    padding: 8px 0;
    font-size: 24px;
    line-height: 32px;
  }

  .main-content h1 + .responsive-course-tabs {
    margin-top: 32px;
  }

  .getting-started-card {
    border-radius: 12px;
    padding: 24px;
  }

  .getting-started-card--responsive {
    align-items: flex-start;
    margin: 8px 0 24px;
  }

  .getting-started-card h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .getting-started-card p {
    font-size: 14px;
    line-height: 20px;
  }

  .getting-started-card--responsive .button,
  .responsive-side-card .side-link,
  .decision-modal__actions .button {
    width: 100%;
  }

  .course-card {
    padding: 16px;
  }

  .course-card__header,
  .course-card__body {
    grid-template-columns: 1fr;
    display: grid;
  }

  .course-card__header {
    justify-items: start;
  }

  .course-card h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .course-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 318 / 212;
    background-size: 2142px 3047px;
  }

  .photo-pharmacy {
    background-position: -681px -515px;
  }

  .photo-pet {
    background-position: -681px -1058px;
  }

  .photo-career {
    background-position: -681px -1773px;
  }

  .button {
    width: 100%;
  }

  .getting-started-card .button {
    width: auto;
  }

  .course-card__actions {
    display: grid;
    gap: 10px;
  }

  .success-toast {
    top: 16px;
  }

  .onboarding-shell__inner {
    padding: 32px 0 48px;
  }

  .progress-steps {
    width: 100%;
    margin-bottom: 16px;
  }

  .progress-steps li {
    font-size: 12px;
  }

  .progress-steps li:not(:last-child)::after {
    left: calc(50% + 12px);
    right: calc(-50% + 12px);
  }

  .onboarding-panel h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .onboarding-lede {
    font-size: 16px;
    line-height: 24px;
  }

  .video-frame {
    width: min(329px, 100%);
    margin-top: 32px;
  }

  .goal-fieldset {
    margin-top: 24px;
  }

  .goal-fieldset legend {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .goal-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .goal-chip {
    min-height: 50px;
    padding: 12px 20px;
    white-space: normal;
  }

  .goal-other {
    width: 100%;
  }

  .onboarding-actions {
    width: 100%;
    margin-top: 24px;
  }

  .onboarding-actions .button {
    min-width: 0;
  }

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

  .onboarding-actions--single .button {
    width: 200px;
  }

  .support-card {
    width: 100%;
    padding: 16px;
    gap: 24px;
  }

  .support-card h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .support-categories {
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
  }

  .support-categories li {
    min-height: 104px;
    gap: 10px;
    padding: 0 10px;
    border-right: 0;
  }

  .support-categories li:nth-child(odd) {
    border-right: 1px solid #d0d5dd;
  }

  .support-categories span {
    width: 52px;
    height: 52px;
  }

  .support-categories svg {
    width: 44px;
    height: 44px;
  }

  .support-categories strong {
    font-size: 16px;
    line-height: 24px;
  }

  .consent-row {
    margin-top: 28px;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .consent-row input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
  }

  .consent-fine-print {
    margin-left: 32px;
    font-size: 14px;
    line-height: 22px;
  }

  .support-card__image {
    order: 2;
    max-width: 300px;
    justify-self: center;
  }

  .support-card__image img {
    width: 100%;
    height: 100%;
  }

  .support-choice-layout {
    margin-top: 32px;
    padding-bottom: 0;
    gap: 16px;
  }

  .support-choice-card {
    min-height: auto;
    padding: 16px;
  }

  .support-choice-card__copy {
    gap: 10px;
  }

  .support-choice-card__title {
    font-size: 18px;
    line-height: 26px;
  }

  .support-choice-card__body,
  .support-choice-card__prompt {
    font-size: 15px;
    line-height: 22px;
  }

  .support-choice-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-choice-benefit {
    white-space: normal;
  }

  .support-choice-visual {
    order: 2;
  }

  .site-footer {
    padding: 36px 0;
  }

  .site-footer__inner,
  .launcher-grid {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    padding: 16px;
  }
}

@media (max-width: 360px) {
  .responsive-course-tabs a {
    padding: 8px 10px;
  }
}

@media (max-width: 980px) {
  .trial-page__inner,
  .trial-page--start .trial-page__inner,
  .trial-page--success .trial-page__inner {
    width: min(750px, calc(100% - 84px));
    padding: 24px 0 56px;
  }

  .trial-course-header,
  .trial-start-panel {
    grid-template-columns: 1fr;
  }

  .trial-course-header__media {
    max-width: 420px;
  }

  .trial-detail-layout {
    grid-template-columns: 1fr;
  }

  .trial-summary-panel {
    max-width: 420px;
  }
}

@media (max-width: 440px) {
  .trial-page__inner,
  .trial-page--start .trial-page__inner,
  .trial-page--success .trial-page__inner {
    width: calc(100% - 32px);
    padding: 16px 0 40px;
  }

  .trial-back-link {
    margin-bottom: 16px;
  }

  .trial-course-header,
  .trial-start-panel,
  .trial-success-panel {
    padding: 16px;
  }

  .trial-course-header h1,
  .trial-start-panel h1,
  .trial-success-panel h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .trial-course-header p,
  .trial-start-panel p,
  .trial-success-panel p {
    font-size: 15px;
    line-height: 22px;
  }

  .trial-actions,
  .trial-actions--footer,
  .trial-actions--centered {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trial-actions .button {
    width: 100%;
  }

  .trial-active-band {
    grid-template-columns: 1fr;
  }

  .trial-detail-panel {
    padding: 18px;
  }

  .trial-summary-panel {
    max-width: none;
    padding: 16px;
  }

  .trial-consent-row {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 360px) {
  .trial-pill {
    white-space: normal;
  }
}
