/* ==========================================================================
   Summit Financial Education
   Brand tokens live in :root. Change them here and the whole site follows.
   ========================================================================== */

:root {
  /* Carried from Summit Debt Solutions */
  --navy:        #013D6F;   /* sampled from the logo */
  --navy-deep:   #012A4C;
  --navy-soft:   #1A5C8F;
  --charcoal:    #34404B;
  --ice:         #E6EEF5;
  --steel:       #C2D6E6;

  /* Education-arm accent: growth, progress, completion */
  --evergreen:      #1F5D45;
  --evergreen-lift: #2B7D5C;
  --evergreen-mist: #E4F0EA;

  --paper:  #FBFCFD;
  --white:  #FFFFFF;
  --muted:  #5C6473;

  --font-display: 'Literata', Georgia, 'Times New Roman', serif;
  --font-ui: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale, 1.25 ratio off a 17px base */
  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-md:   1.3125rem;
  --t-lg:   1.625rem;
  --t-xl:   2.0625rem;
  --t-2xl:  2.5rem;
  --t-3xl:  3.25rem;

  --rail: 2px;
  --shell: 1120px;
  --prose: 66ch;
}

/* Reset --------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.012em;
  font-weight: 600;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--t-3xl); letter-spacing: -0.024em; }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-md); }

p { margin: 0 0 1.15em; max-width: var(--prose); }

a { color: var(--evergreen); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--evergreen-lift); }

:focus-visible {
  outline: 3px solid var(--evergreen-lift);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px;
  background: var(--navy); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 200;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Layout -------------------------------------------------------------- */

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.band { padding: 5.5rem 0; }
.band--tight { padding: 3.5rem 0; }
.band--ice { background: var(--ice); }
.band--navy { background: var(--navy); color: var(--steel); }
.band--navy h2, .band--navy h3 { color: var(--white); }

.lede {
  font-size: var(--t-md);
  line-height: 1.5;
  color: var(--muted);
  max-width: 54ch;
}

.band--navy .lede { color: var(--steel); }

/* Header -------------------------------------------------------------- */

.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--steel);
  position: sticky; top: 0; z-index: 100;
}

.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 0.7rem 0;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--navy);
  text-decoration: none;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.wordmark__logo { width: auto; height: 36px; flex: none; display: block; }
.wordmark__text { display: block; }
.wordmark__text > span {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.wordmark strong { font-size: var(--t-md); font-weight: 600; display: block; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: var(--t-sm);
  font-weight: 500;
}
.nav a:hover { color: var(--evergreen); }
.nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--evergreen);
}

/* .nav a is more specific than .btn--primary, so restate the button colours */
.nav a.btn--primary,
.nav a.btn--primary:hover {
  color: var(--white);
  box-shadow: none;
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--steel);
  border-radius: 3px; padding: 0.5rem 0.7rem; cursor: pointer;
  color: var(--navy); font-size: var(--t-sm); font-family: var(--font-ui);
}

/* Buttons ------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}

.btn--primary { background: var(--evergreen); color: var(--white); }
.btn--primary:hover { background: var(--evergreen-lift); color: var(--white); }

.btn--line { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--line:hover { background: var(--navy); color: var(--white); }

.btn--onnavy { border-color: var(--steel); color: var(--white); background: transparent; }
.btn--onnavy:hover { background: var(--white); color: var(--navy); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

/* Hero ---------------------------------------------------------------- */

.hero {
  background: var(--white);
  border-bottom: 1px solid var(--steel);
  padding: 5rem 0 0;
}

.hero h1 { max-width: 15ch; }
.hero .lede { margin-top: 1.5rem; }

/* Situation router — the entry point, not a decorative card grid */

.router {
  margin-top: 4rem;
  border-top: 1px solid var(--steel);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.router__item {
  padding: 2rem 1.75rem 2.25rem;
  border-right: 1px solid var(--steel);
  text-decoration: none;
  display: block;
  background: var(--white);
  transition: background-color 140ms ease;
}
.router__item:last-child { border-right: 0; }
.router__item:hover { background: var(--evergreen-mist); }

.router__q {
  font-family: var(--font-display);
  font-size: var(--t-md);
  color: var(--navy);
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.router__a { color: var(--muted); font-size: var(--t-sm); display: block; }
.router__go {
  color: var(--evergreen);
  font-weight: 600;
  font-size: var(--t-sm);
  display: block;
  margin-top: 0.9rem;
}

/* The path — vertical rail with module nodes --------------------------- */

.path { margin-top: 3rem; position: relative; padding-left: 2.75rem; }

.path::before {
  content: "";
  position: absolute;
  left: 9px; top: 12px; bottom: 12px;
  width: var(--rail);
  background: var(--steel);
}

.path__step { position: relative; padding: 0 0 2.25rem; }
.path__step:last-child { padding-bottom: 0; }

.path__step::before {
  content: "";
  position: absolute;
  left: -2.75rem; top: 7px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: var(--rail) solid var(--steel);
}

.path__step--open::before {
  background: var(--evergreen);
  border-color: var(--evergreen);
}

.path__title {
  font-family: var(--font-display);
  font-size: var(--t-md);
  color: var(--navy);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.path__meta {
  font-size: var(--t-xs);
  color: var(--evergreen);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.35rem;
}
.path__meta--locked { color: var(--muted); font-weight: 400; }

.path__step p { margin: 0; color: var(--muted); font-size: var(--t-sm); max-width: 58ch; }

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}

/* Article list -------------------------------------------------------- */

.stack { border-top: 1px solid var(--steel); margin-top: 2.5rem; }

.entry {
  border-bottom: 1px solid var(--steel);
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 2rem;
  align-items: baseline;
}

.entry__kind {
  font-size: var(--t-xs);
  color: var(--muted);
  padding-top: 0.35rem;
}

.entry__title {
  font-family: var(--font-display);
  font-size: var(--t-md);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}
.entry__title a { color: var(--navy); text-decoration: none; }
.entry__title a:hover { color: var(--evergreen); text-decoration: underline; }
.entry p { margin: 0; font-size: var(--t-sm); color: var(--muted); }

/* Tiers --------------------------------------------------------------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--steel);
  background: var(--white);
}

.tier {
  padding: 2.25rem 1.9rem 2.5rem;
  border-right: 1px solid var(--steel);
  display: flex; flex-direction: column;
}
.tier:last-child { border-right: 0; }

.tier--featured { background: var(--evergreen-mist); }

.tier__name {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  color: var(--navy);
  margin: 0 0 0.15rem;
}

.tier__price {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--evergreen);
  line-height: 1.1;
  margin: 0.6rem 0 0.2rem;
}
.tier__unit { font-size: var(--t-xs); color: var(--muted); display: block; margin-bottom: 1.4rem; }

.tier__for { font-size: var(--t-sm); color: var(--muted); margin: 0 0 1.4rem; }

.tier ul { list-style: none; margin: 0 0 2rem; padding: 0; font-size: var(--t-sm); }
.tier li { padding: 0.45rem 0 0.45rem 1.6rem; position: relative; color: var(--charcoal); }
.tier li::before {
  content: "";
  position: absolute; left: 0; top: 0.95rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--evergreen);
}
.tier .btn { margin-top: auto; text-align: center; }

/* Prose pages --------------------------------------------------------- */

.prose { max-width: var(--prose); }
.prose h2 { margin-top: 2.75rem; font-size: var(--t-lg); }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1.25em; }
.prose li { margin-bottom: 0.5em; }

/* Forms --------------------------------------------------------------- */

.form { max-width: 34rem; }

.field { margin-bottom: 1.35rem; }
.field label {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-ui);
  font-size: var(--t-base);
  color: var(--charcoal);
  background: var(--white);
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--steel);
  border-radius: 3px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--evergreen); }
.field textarea { min-height: 8rem; resize: vertical; }

.field--hp { position: absolute; left: -9999px; }

.form__note { font-size: var(--t-xs); color: var(--muted); max-width: 40ch; }

/* Disclosure ---------------------------------------------------------- */

.disclosure {
  border-left: 3px solid var(--evergreen);
  padding: 1.25rem 0 1.25rem 1.5rem;
  background: var(--white);
  max-width: 62ch;
}
.disclosure p { font-size: var(--t-sm); margin-bottom: 0.65em; }
.disclosure p:last-child { margin-bottom: 0; }

/* Footer -------------------------------------------------------------- */

.footer {
  background: var(--navy-deep);
  color: var(--steel);
  padding: 4rem 0 2.5rem;
  font-size: var(--t-sm);
}
.footer a { color: var(--steel); text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200, 216, 232, 0.22);
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}

.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.6rem; }

.footer__logo { width: auto; height: 52px; margin-bottom: 1rem; }

.footer__fine {
  padding-top: 2rem;
  font-size: var(--t-xs);
  color: rgba(200, 216, 232, 0.75);
  max-width: 70ch;
}
.footer__fine p { margin-bottom: 0.75em; max-width: none; }

/* Responsive ---------------------------------------------------------- */

@media (max-width: 900px) {
  :root { --t-3xl: 2.375rem; --t-2xl: 2rem; --t-xl: 1.75rem; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .router { grid-template-columns: 1fr; }
  .router__item { border-right: 0; border-bottom: 1px solid var(--steel); }
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: 0; border-bottom: 1px solid var(--steel); }
  .tier:last-child { border-bottom: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  .band { padding: 3.5rem 0; }
  .hero { padding-top: 3rem; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--steel);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--ice); }
  .nav .btn { margin-top: 0.9rem; text-align: center; border-bottom: 0; }
  .entry { grid-template-columns: 1fr; gap: 0.4rem; }
  .entry__kind { padding-top: 0; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Components added for the expanded site structure
   ========================================================================== */

/* Utility bar above the masthead */

.utility {
  background: var(--navy-deep);
  color: var(--steel);
  font-size: var(--t-xs);
}
.utility__inner {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 1.5rem; padding: 0.5rem 0;
}
.utility a { color: var(--steel); text-decoration: none; }
.utility a:hover { color: var(--white); text-decoration: underline; }

/* Trust strip under the hero */

.trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 2.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--steel);
}
.trust__item { display: flex; flex-direction: column; }
.trust__figure {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  color: var(--navy);
  line-height: 1.1;
}
.trust__label { font-size: var(--t-xs); color: var(--muted); margin-top: 0.2rem; }

/* Three-across feature grid */

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border: 1px solid var(--steel);
  background: var(--white);
}
.trio > * {
  padding: 2.25rem 1.9rem;
  border-right: 1px solid var(--steel);
}
.trio > *:last-child { border-right: 0; }
.trio h3 { font-size: var(--t-md); margin-bottom: 0.5rem; }
.trio p { font-size: var(--t-sm); color: var(--muted); margin-bottom: 1rem; }
.trio ul { list-style: none; margin: 0; padding: 0; font-size: var(--t-sm); }
.trio li { padding: 0.3rem 0 0.3rem 1.5rem; position: relative; }
.trio li::before {
  content: ""; position: absolute; left: 0; top: 0.85rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--evergreen);
}

/* Numbered process — genuinely sequential, so numbers earn their place */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  margin-top: 3rem;
}
.step { counter-increment: step; }
.step::before {
  content: counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  color: var(--evergreen);
  line-height: 1;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: var(--rail) solid var(--steel);
}
.step h3 { font-size: var(--t-base); margin-bottom: 0.35rem; }
.step p { font-size: var(--t-sm); color: var(--muted); margin: 0; }

.band--navy .step::before { color: var(--white); border-bottom-color: rgba(200,216,232,0.3); }
.band--navy .step p { color: var(--steel); }

/* Who it's for */

.personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
.persona { border-top: var(--rail) solid var(--evergreen); padding-top: 1.25rem; }
.persona h3 { font-size: var(--t-md); margin-bottom: 0.4rem; }
.persona p { font-size: var(--t-sm); color: var(--muted); margin: 0; }

/* Testimonials */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 3rem;
          border: 1px solid var(--steel); background: var(--white); }
.quote { padding: 2rem 1.9rem; border-right: 1px solid var(--steel); display: flex; flex-direction: column; }
.quote:last-child { border-right: 0; }
.quote blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: var(--t-md);
  line-height: 1.45;
  color: var(--navy);
}
.quote figcaption { margin-top: auto; font-size: var(--t-sm); color: var(--muted); }
.quote__who { display: block; font-weight: 600; color: var(--charcoal); }

.placeholder-note {
  background: #FFF6E5;
  border-left: 3px solid #B37A00;
  padding: 1rem 1.25rem;
  font-size: var(--t-sm);
  margin-top: 2rem;
  max-width: 62ch;
}
.placeholder-note p { margin: 0; }

/* FAQ */

.faq { margin-top: 2.5rem; border-top: 1px solid var(--steel); max-width: 74ch; }
.faq details { border-bottom: 1px solid var(--steel); }
.faq summary {
  cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: var(--font-display);
  font-size: var(--t-md);
  color: var(--navy);
  position: relative;
  list-style: none;
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0.35rem; top: 1.05rem;
  font-family: var(--font-ui);
  font-size: var(--t-lg);
  color: var(--evergreen);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 0 1.5rem; }
.faq details p { font-size: var(--t-sm); margin-bottom: 0.8em; }
.faq details p:last-child { margin-bottom: 0; }

/* Quiz */

.quiz { max-width: 40rem; margin-top: 2.5rem; }
.quiz__q { border-bottom: 1px solid var(--steel); padding: 1.5rem 0; }
.quiz__q > p { font-family: var(--font-display); font-size: var(--t-md);
               color: var(--navy); margin-bottom: 0.9rem; }
.quiz__opts { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.quiz__opt {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--steel); border-radius: 3px;
  padding: 0.55rem 0.95rem; cursor: pointer;
  font-size: var(--t-sm); background: var(--white);
}
.quiz__opt:hover { border-color: var(--evergreen); }
.quiz__opt input { accent-color: var(--evergreen); margin: 0; }
.quiz__opt:has(input:checked) { border-color: var(--evergreen); background: var(--evergreen-mist); }

.quiz__result {
  margin-top: 2rem; padding: 1.75rem;
  background: var(--evergreen-mist);
  border-left: 3px solid var(--evergreen);
}
.quiz__result h3 { margin-bottom: 0.4rem; }
.quiz__result p:last-child { margin-bottom: 0; }
.quiz__score {
  font-family: var(--font-display);
  font-size: var(--t-xl); color: var(--evergreen);
  line-height: 1; margin-bottom: 0.5rem;
}
[hidden] { display: none !important; }

@media (max-width: 900px) {
  .trio, .quotes { grid-template-columns: 1fr; }
  .trio > *, .quote { border-right: 0; border-bottom: 1px solid var(--steel); }
  .trio > *:last-child, .quote:last-child { border-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .personas { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 680px) {
  .steps { grid-template-columns: 1fr; gap: 1.75rem; }
  .trust { gap: 1.5rem 2rem; }
  .utility__inner {
    justify-content: flex-start;
    gap: 1.25rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .utility__inner::-webkit-scrollbar { display: none; }
  .utility a { white-space: nowrap; }
}

/* Module pages ---------------------------------------------------------- */

.module-head { background: var(--white); border-bottom: 1px solid var(--steel); padding: 3.5rem 0 3rem; }
.module-head .kicker {
  font-size: var(--t-sm); color: var(--evergreen); font-weight: 600;
  display: block; margin-bottom: 0.6rem;
}
.module-head h1 { font-size: var(--t-2xl); max-width: 20ch; }
.module-head .lede { margin-top: 1rem; }
.module-head .meta { font-size: var(--t-xs); color: var(--muted); margin-top: 1.5rem; }

.callout {
  background: var(--evergreen-mist);
  border-left: 3px solid var(--evergreen);
  padding: 1.4rem 1.6rem;
  margin: 2.25rem 0;
  max-width: var(--prose);
}
.callout h3 { font-size: var(--t-base); margin-bottom: 0.5rem; }
.callout p { font-size: var(--t-sm); margin-bottom: 0.7em; }
.callout p:last-child { margin-bottom: 0; }
.callout ul { font-size: var(--t-sm); margin-bottom: 0; }

.tbl { width: 100%; max-width: var(--prose); border-collapse: collapse; margin: 1.75rem 0; font-size: var(--t-sm); }
.tbl th, .tbl td { text-align: left; padding: 0.7rem 0.9rem 0.7rem 0; border-bottom: 1px solid var(--steel); vertical-align: top; }
.tbl th { color: var(--navy); font-weight: 600; border-bottom-width: var(--rail); }
.tbl td:first-child, .tbl th:first-child { padding-right: 1.5rem; }

.module-nav {
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  border-top: 1px solid var(--steel); padding-top: 2rem; margin-top: 3rem;
  max-width: var(--prose);
}
.module-nav a { font-size: var(--t-sm); font-weight: 600; text-decoration: none; }
.module-nav span { display: block; font-size: var(--t-xs); color: var(--muted); font-weight: 400; }

.module-list { border-top: 1px solid var(--steel); margin-top: 2.5rem; max-width: 72ch; }
.module-list__item {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem;
  border-bottom: 1px solid var(--steel); padding: 1.9rem 0; align-items: start;
}
.module-list__n {
  font-family: var(--font-display); font-size: var(--t-lg);
  color: var(--evergreen); line-height: 1;
}
.module-list__item h3 { font-size: var(--t-md); margin-bottom: 0.35rem; }
.module-list__item h3 a { color: var(--navy); text-decoration: none; }
.module-list__item h3 a:hover { color: var(--evergreen); text-decoration: underline; }
.module-list__item p { font-size: var(--t-sm); color: var(--muted); margin: 0 0 0.6rem; }
.module-list__time { font-size: var(--t-xs); color: var(--muted); }

@media (max-width: 680px) {
  .module-list__item { grid-template-columns: 2rem 1fr; gap: 1rem; }
  .tbl, .tbl thead, .tbl tbody, .tbl tr, .tbl th, .tbl td { display: block; width: 100%; }
  .tbl th { border-bottom: 0; padding-bottom: 0.2rem; }
  .tbl td { border-bottom: 0; padding-top: 0.2rem; }
  .tbl tr { border-bottom: 1px solid var(--steel); padding: 0.8rem 0; }
}

/* Logo lockup adjustments */
@media (max-width: 680px) {
  .wordmark__logo { height: 30px; }
  .wordmark strong { font-size: var(--t-base); }
  .footer__logo { height: 46px; }
}

/* Utilization calculator ------------------------------------------------ */

.calc { max-width: 44rem; }
.calc__tbl { max-width: none; }
.calc__tbl input {
  width: 100%; max-width: 9rem;
  font-family: var(--font-ui); font-size: var(--t-base);
  padding: 0.5rem 0.6rem; border: 1px solid var(--steel); border-radius: 3px;
  background: var(--white); color: var(--charcoal);
}
.calc__tbl input:focus { border-color: var(--evergreen); outline: none; }
.calc-each { font-weight: 600; font-variant-numeric: tabular-nums; }
.calc-each.is-low  { color: var(--evergreen); }
.calc-each.is-mid  { color: #B37A00; }
.calc-each.is-high { color: #A32C1E; }

.calc__out {
  margin-top: 2.25rem; padding: 1.75rem;
  background: var(--evergreen-mist); border-left: 3px solid var(--evergreen);
}
.calc__big {
  font-family: var(--font-display); font-size: var(--t-3xl);
  line-height: 1; margin: 0; color: var(--evergreen);
  font-variant-numeric: tabular-nums;
}
.calc__big.is-mid  { color: #B37A00; }
.calc__big.is-high { color: #A32C1E; }
.calc__label { font-size: var(--t-xs); color: var(--muted); margin: 0.4rem 0 1rem; }
.calc__out p:last-child { margin-bottom: 0; font-size: var(--t-sm); }
