.program-section-copy { max-width: 780px; color: var(--muted); font-size: 18px; }

.module-grid,
.learning-outcomes {
  margin: 0;
  padding: 1px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  list-style: none;
}

.module-grid li,
.learning-outcomes li { min-width: 0; padding: 38px; background: var(--limestone); }
.module-grid li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.module-grid span,
.learning-outcomes span {
  display: block;
  color: var(--olive);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.module-grid h3 { margin: 42px 0 14px; font-size: clamp(25px, 2.4vw, 34px); }
.module-grid p { max-width: 580px; color: var(--muted); }

.learning-outcomes { counter-reset: outcome; }
.learning-outcomes li { position: relative; padding-left: 86px; counter-increment: outcome; }
.learning-outcomes li::before {
  content: counter(outcome, decimal-leading-zero);
  position: absolute;
  top: 40px;
  left: 38px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
}
.learning-outcomes strong { display: block; margin-bottom: 8px; font-size: 18px; }
.learning-outcomes p { margin: 0; color: var(--muted); }
.lined-list a { color: var(--olive-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

.cta-actions { justify-self: end; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.cta-actions .button { justify-self: auto; }
.cta-actions .text-link { color: white; border-color: rgba(255,255,255,.45); }

@media (max-width: 860px) {
  .cta-actions { justify-self: start; justify-content: flex-start; }
}

@media (max-width: 680px) {
  .module-grid, .learning-outcomes { grid-template-columns: 1fr; }
  .module-grid li, .learning-outcomes li { padding: 28px; }
  .module-grid li:last-child:nth-child(odd) { grid-column: auto; }
  .module-grid h3 { margin-top: 30px; }
  .learning-outcomes li { padding-left: 72px; }
  .learning-outcomes li::before { top: 30px; left: 28px; }
  .cta-actions { width: 100%; align-items: stretch; flex-direction: column; }
  .cta-actions .button, .cta-actions .text-link { width: 100%; }
}
