:root {
  --bg: #faf6ec;
  --bg-warm: #f4ecd8;
  --card: #fffdf8;
  --text: #1a1a1a;
  --text2: #5a5142;
  --ink: #e05c00;
  --accent: #e05c00;
  --accent-d: #bf4f00;
  --red: #d62828;
  --rule: #e2dccb;
  --muted: #9a8c78;
  --ff-body: Lora, Georgia, serif;
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-ui: Inter, system-ui, sans-serif;
  --shadow-card: 0 14px 36px -26px rgba(60, 40, 20, 0.5);
  --shadow-panel: 0 16px 44px -32px rgba(60, 40, 20, 0.45);
  --pad-x: max(clamp(1rem, 4vw, 1.65rem), calc((100% - 1180px) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--ff-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.bk {
  color: var(--ink);
}

/* reading progress */
.rprog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ink), var(--accent));
  transition: width 0.12s;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 58px;
  padding: 0.55rem var(--pad-x);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}

.brand-text {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 12.5px;
  font-weight: 600;
}

.nav a {
  padding: 8px 12px;
  color: var(--text2);
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.15s;
}

.nav a:hover {
  color: var(--ink);
}

.nav a.nav-cta {
  padding: 9px 18px;
  color: #fff;
  background: var(--accent);
  font-weight: 700;
  transition: background 0.15s, transform 0.15s;
}

.nav a.nav-cta:hover {
  color: #fff;
  background: var(--accent-d);
  transform: translateY(-1px);
}

.video-feature {
  padding: clamp(1.25rem, 3vw, 2rem) var(--pad-x) 0;
}

.video-shell {
  overflow: hidden;
  background: #000;
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-panel);
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
  padding: clamp(5rem, 8vw, 7.25rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
}

.hero-copy {
  max-width: 68rem;
}

.agi-stamp {
  position: absolute;
  top: clamp(1.35rem, 3vw, 2.4rem);
  right: var(--pad-x);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 18px 7px;
  color: #b52518;
  border: 3px double currentColor;
  border-radius: 3px;
  font-family: var(--ff-ui);
  text-transform: uppercase;
  transform: rotate(11deg);
  opacity: 0.9;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.agi-stamp span {
  font-size: clamp(18px, 2.3vw, 31px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.agi-stamp small {
  font-size: clamp(8px, 0.9vw, 11px);
  font-weight: 800;
  letter-spacing: 0.38em;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--ff-ui);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-family: var(--ff-display);
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.hero-line {
  margin-bottom: 22px;
  color: var(--text2);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 27px);
  font-weight: 500;
  line-height: 1.3;
}

.hero-line em {
  font-style: italic;
}

.hero-body {
  max-width: 64ch;
  color: var(--text2);
  font-size: 17px;
}

.hero-promise {
  max-width: 58rem;
  color: var(--text);
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.12;
}

.hero-reflection {
  max-width: 62rem;
  margin: 14px 0 0;
  color: var(--text2);
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 29px);
  font-style: italic;
  line-height: 1.22;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-d);
  border-color: var(--accent-d);
}

.button.secondary {
  color: var(--text2);
  background: var(--card);
  border-color: var(--rule);
}

.button.secondary:hover {
  color: var(--ink);
  border-color: var(--ink);
}

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

.hero-panel {
  display: grid;
  grid-template-columns: minmax(11rem, 0.7fr) minmax(20rem, 1.2fr) minmax(15rem, 0.9fr) minmax(17rem, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-panel);
}

.date-lockup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  align-items: start;
  padding: 0 clamp(1rem, 2vw, 1.5rem) 0 0;
  margin: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 0;
}

.month {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.02;
  white-space: normal;
}

.day {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 0.96;
  white-space: nowrap;
}

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

.label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.snapshot-grid strong {
  font-family: var(--ff-ui);
  font-size: 14.5px;
  font-weight: 600;
}

.time-note {
  margin: 0;
  padding: 15px 20px;
  color: var(--text2);
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 15px;
}

.time-note strong {
  color: var(--ink);
}

.deadline-note {
  margin-top: 0;
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(160deg, var(--accent), var(--accent-d));
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.deadline-note .label {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
}

.deadline-note p {
  margin: 6px 0 0;
  font-size: 15px;
}

.deadline-note strong {
  font-weight: 600;
}

.intro-band,
.details-section,
.cohort-section,
.faculty-section,
.interest-section {
  padding: clamp(3.25rem, 6.5vw, 5.5rem) var(--pad-x);
  border-top: 1px solid var(--rule);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(14rem, 0.38fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.intro-art {
  padding: 10px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: var(--shadow-panel);
}

.intro-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.poster-art {
  max-width: 430px;
  justify-self: center;
}

.poster-art img {
  aspect-ratio: auto;
  max-height: 620px;
  object-fit: contain;
}

.intro-copy h2,
.section-heading h2,
.interest-copy h2 {
  margin-bottom: 0;
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-copy h2::after,
.section-heading h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px 0 20px;
  background: var(--ink);
  border-radius: 2px;
}

.intro-copy p:last-child,
.section-heading p:last-of-type,
.interest-copy p {
  max-width: 64ch;
  color: var(--text2);
  font-size: 16.5px;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.course-inset {
  max-width: 980px;
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  padding: clamp(1.25rem, 2.6vw, 1.8rem);
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 6%, var(--card)), var(--card));
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.course-inset .inset-kicker {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.course-inset p {
  max-width: 78ch;
  margin: 0;
  color: var(--text2);
  font-size: 16px;
}

.course-inset p + p {
  margin-top: 0.75rem;
}

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

.detail-card,
.cohort {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 230px;
  padding: 24px 22px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.card-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.detail-card h3,
.cohort h3 {
  margin-bottom: 6px;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

.detail-card p,
.cohort li {
  color: var(--text2);
  font-size: 15px;
}

.detail-card p {
  margin: 0;
}

.cohort-section .section-heading {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

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

.cohort h3 {
  font-size: 24px;
}

.cohort-count {
  margin: 2px 0 10px;
  color: var(--accent);
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cohort ul {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.cohort li {
  padding: 11px 0;
  font-size: 15.5px;
}

.cohort li + li {
  border-top: 1px solid var(--rule);
}

.syllabus-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 18px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.syllabus-link:hover {
  background: var(--accent-d);
  border-color: var(--accent-d);
  transform: translateY(-1px);
}

.registration-note {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
}

.registration-note p {
  margin: 0;
  color: var(--text2);
  font-size: 14.5px;
}

.registration-note p + p {
  margin-top: 8px;
}

.registration-note .record-kicker {
  margin-bottom: 10px;
  color: var(--ink);
}

.instructor-records {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
}

.instructor-records article {
  padding: 20px 22px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 7%, var(--card)), var(--card));
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.record-kicker {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.instructor-records h3 {
  margin: 14px 0 6px;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
}

.instructor-records h3:first-of-type {
  margin-top: 0;
}

.instructor-records p:not(.record-kicker) {
  margin: 0;
  color: var(--text2);
  font-size: 15px;
}

.instructor-records p:not(.record-kicker) + p:not(.record-kicker) {
  margin-top: 10px;
}

.faculty-collaboration {
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.12;
}

.faculty-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.faculty-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.faculty-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
}

.faculty-card p {
  margin: 0;
  color: var(--text2);
  font-size: 14.5px;
}

.interest-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  color: #fff;
  background: var(--ink);
  border-top: none;
}

.interest-section .section-kicker {
  color: rgba(255, 255, 255, 0.85);
}

.interest-copy h2 {
  margin-bottom: 14px;
  color: #fff;
}

.interest-copy p {
  color: #fff;
  opacity: 0.92;
  font-size: 17px;
}

.interest-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.interest-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  color: var(--text);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.35);
}

.option-kicker {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.interest-card h3 {
  margin-bottom: 6px;
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.05;
}

.interest-card p {
  margin-bottom: 0;
  color: var(--text2);
  opacity: 1;
}

.interest-card .typed-link-label {
  margin: 0;
  color: var(--muted);
}

.interest-card .link-row {
  max-width: none;
  border: 1px solid var(--rule);
}

.interest-card .qr-card {
  width: min(100%, 230px);
  justify-self: center;
  box-shadow: none;
}

.article-main {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.article-hero {
  padding: clamp(4.5rem, 8vw, 7rem) var(--pad-x) clamp(2.75rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--rule);
}

.article-hero h1 {
  max-width: 11ch;
}

.article-hero > p:not(.section-kicker) {
  max-width: 58rem;
  color: var(--text2);
  font-family: var(--ff-display);
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.12;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.argument-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
}

.argument-card {
  min-height: 300px;
  padding: 26px 24px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.argument-card h2 {
  margin-bottom: 12px;
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.argument-card p {
  margin: 0;
  color: var(--text2);
  font-size: 15.5px;
}

.article-explainer {
  display: grid;
  grid-template-columns: minmax(16rem, 0.6fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin: 0 var(--pad-x) 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 6%, var(--card)), var(--card));
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.article-explainer h2 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
}

.article-explainer > p {
  margin: 0;
  color: var(--text2);
  font-size: 17px;
}

.article-explainer-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.article-explainer-dark .section-kicker,
.article-explainer-dark h2,
.article-explainer-dark > p {
  color: #fff;
}

.typed-link-label {
  margin: 26px 0 10px;
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.link-row {
  display: flex;
  align-items: stretch;
  max-width: 44rem;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}

.link-row a {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  padding: 14px 20px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--ff-ui);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}

.link-row a:hover {
  background: var(--bg);
}

.copy-button {
  min-width: 5.75rem;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid var(--rule);
  color: var(--ink);
  background: #fff;
  font-family: var(--ff-ui);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.copy-button:hover {
  background: var(--bg);
  transform: none;
}

.qr-card {
  display: block;
  padding: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.35);
}

.qr-card img {
  width: 100%;
  border-radius: 10px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 34px var(--pad-x);
  color: var(--muted);
  font-family: var(--ff-ui);
  font-size: 12.5px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text2);
  transition: color 0.15s;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .hero,
  .intro-band,
  .interest-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr 1fr;
  }

  .date-lockup {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 0 0 1rem;
  }

  .detail-grid,
  .argument-grid,
  .interest-options,
  .instructor-records,
  .faculty-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-explainer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero {
    padding-top: 6.75rem;
  }

  .agi-stamp {
    top: 1.1rem;
    right: var(--pad-x);
    padding: 7px 14px 6px;
  }

  .hero-actions,
  .link-row {
    flex-direction: column;
  }

  .hero-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .link-row {
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }

  .copy-button {
    min-height: 3rem;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .snapshot-grid,
  .detail-grid,
  .argument-grid,
  .cohort-grid,
  .instructor-records,
  .interest-options,
  .faculty-list {
    grid-template-columns: 1fr;
  }

  .faculty-card,
  .detail-card,
  .cohort {
    min-height: auto;
  }
}
