/* ============================================================
   The Player Group — design system
   Black / gold, editorial serif display over a neutral UI sans.
   ============================================================ */

:root {
  --bg:        #050505;
  --surface:   #0d0d0d;
  --raised:    #141312;
  --line:      rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.055);

  --gold:      #c9a86c;
  --gold-dim:  #8d7647;
  --gold-wash: rgba(201, 168, 108, 0.09);

  --text:      #f6f4f0;
  --muted:     #9d968c;
  --faint:     #6c665e;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;

  --max:   1200px;
  --wide:  1400px;
  --nav-h: 68px;

  --gut: clamp(20px, 5vw, 40px);
  --sec: clamp(64px, 9vw, 120px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* height:auto is load-bearing — every <img> carries width/height attributes for
   CLS, and without it max-width scaling stretches them. */
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

::selection { background: var(--gold); color: #000; }

/* ---------------------------------------------------------- layout */

.wrap  { width: 100%; max-width: var(--max);  margin-inline: auto; padding-inline: var(--gut); }
.wrap-wide { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--gut); }

.section { padding-block: var(--sec); }
.section + .section { border-top: 1px solid var(--line-soft); }
.section--surface { background: var(--surface); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #000; padding: 12px 20px;
  font-size: 14px; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------------------------------------------------------- type */

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 18px;
}
.eyebrow--muted { color: var(--faint); }

h1, h2, h3, h4 { font-weight: 400; line-height: 1.08; text-wrap: balance; }

.d1 { font-family: var(--serif); font-size: clamp(42px, 7.2vw, 92px); letter-spacing: -0.015em; }
.d2 { font-family: var(--serif); font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -0.01em; }
.d3 { font-family: var(--serif); font-size: clamp(25px, 3vw, 34px); letter-spacing: -0.005em; }

.h-sans {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(19px, 2vw, 23px); line-height: 1.3; letter-spacing: -0.01em;
}

.lede {
  font-size: clamp(19px, 2.1vw, 23px); line-height: 1.55;
  color: var(--text); max-width: 34ch;
}
.lede--wide { max-width: 46ch; }

.prose { max-width: 68ch; color: var(--muted); }
.prose p + p { margin-top: 1.1em; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.gold { color: var(--gold); }
.rule { width: 64px; height: 2px; background: var(--gold); border: 0; margin-block: 28px; }

/* ---------------------------------------------------------- nav */

.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; height: 100%; gap: 32px; }

.brand { display: flex; align-items: center; flex: 0 0 auto; margin-right: auto; }
.brand img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.18s ease; position: relative; padding-block: 6px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}
/* Specificity, not !important: `.nav-links a` (0,1,1) would otherwise beat
   `.nav-cta` (0,1,0) on desktop, and an !important here beats the mobile
   drawer rule right back — which is what made Contact the odd item out. */
.nav-links a.nav-cta {
  border: 1px solid var(--line); padding: 9px 20px; color: var(--text);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.nav-links a.nav-cta:hover { border-color: var(--gold); background: var(--gold-wash); }
.nav-links a.nav-cta::after { display: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  color: var(--text); padding: 10px; margin-right: -10px;
  border-radius: 2px;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 4px var(--gut) max(20px, env(safe-area-inset-bottom));
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto; overscroll-behavior: contain;
    /* visibility (not just opacity) so closed links leave the tab order
       and the accessibility tree; delayed so the fade still plays out */
    visibility: hidden; opacity: 0; transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease,
                visibility 0s linear 0.18s;
  }
  .nav-links[data-open="true"] {
    visibility: visible; opacity: 1; transform: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
  }

  /* every row identical: same height, same alignment, same rule beneath */
  .nav-links a,
  .nav-links a.nav-cta {
    display: flex; align-items: center;
    min-height: 56px; padding: 16px 0; font-size: 16px;
    border: 0; border-bottom: 1px solid var(--line-soft);
    letter-spacing: 0.08em; color: var(--muted);
  }
  .nav-links a.nav-cta { color: var(--gold); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--gold); }
}

/* the page must not scroll underneath an open drawer */
body[data-nav-open="true"] { overflow: hidden; }

/* ---------------------------------------------------------- hero */

.hero {
  padding-block: clamp(72px, 12vw, 140px) clamp(56px, 8vw, 96px);
  text-align: center;
}
.hero-mark { max-width: min(520px, 82vw); margin-inline: auto; }
.hero h1 {
  margin-top: clamp(36px, 5vw, 56px);
  max-width: 20ch; margin-inline: auto;
}
.hero-sub {
  margin: 26px auto 0; max-width: 56ch;
  color: var(--muted); font-size: clamp(16px, 1.7vw, 19px);
}
.hero-actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* page headers on interior pages */
.page-head { padding-block: clamp(56px, 8vw, 104px) clamp(28px, 4vw, 48px); }
.page-head .prose { margin-top: 26px; }

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 14px 30px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: none; cursor: pointer; font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--gold); color: #000; }
.btn--solid { background: var(--gold); color: #000; }
.btn--solid:hover { background: #dcbe83; border-color: #dcbe83; }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,0.06); color: var(--text); border-color: var(--muted); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--gold); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.arrow-link span { transition: transform 0.2s ease; }
.arrow-link:hover span { transform: translateX(4px); }

/* ---------------------------------------------------------- stats */

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); margin-top: clamp(40px, 6vw, 64px);
}
.stat { background: var(--bg); padding: clamp(24px, 3vw, 34px); }
.stat .n {
  display: block; font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px); line-height: 1; color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat .l {
  display: block; margin-top: 12px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted);
}

/* ---------------------------------------------------------- grids & cards */

.grid { display: grid; gap: clamp(20px, 2.5vw, 30px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
/* capped at 4 so the 8 course cards land as two clean rows, not 5 + 3 */
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
@media (min-width: 1040px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* split: text column + media column */
.split {
  display: grid; gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
  .split--flip > :first-child { order: 2; }
}

.figure { border: 1px solid var(--line-soft); background: var(--surface); }
.figure img { width: 100%; height: auto; }
.figure figcaption {
  padding: 14px 18px; font-size: 13px; color: var(--faint);
  border-top: 1px solid var(--line-soft);
}

/* pillar cards (home) */
.pillar {
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft); background: var(--surface);
  padding: clamp(26px, 3vw, 36px);
  transition: border-color 0.2s ease, background 0.2s ease;
}
a.pillar:hover { border-color: var(--gold-dim); background: var(--raised); }
.pillar .eyebrow { margin-bottom: 14px; }
.pillar h2 { margin-bottom: 14px; }
.pillar p { color: var(--muted); font-size: 15.5px; flex: 1; }
.pillar .arrow-link { margin-top: 24px; }

/* course cards */
.course {
  border: 1px solid var(--line-soft); background: var(--surface);
  overflow: hidden; transition: border-color 0.2s ease, transform 0.2s ease;
}
.course:hover { border-color: var(--gold-dim); }
.course img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.course-body { padding: 18px 20px 22px; }
.course-body h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; line-height: 1.35; }
.course-body p {
  margin-top: 7px; font-size: 13px; color: var(--muted);
  letter-spacing: 0.02em;
}
.course-body .tag {
  margin-top: 14px; display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--line); padding: 4px 10px;
}

/* typology cards */
.typo { border: 1px solid var(--line-soft); background: var(--surface); overflow: hidden; }
.typo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.typo-body { padding: 20px 22px 24px; }
.typo-body h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.02em; }
.typo-body p { margin-top: 8px; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.chip {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); padding: 7px 14px;
}

/* numbered / bulleted feature list */
.list { list-style: none; max-width: 68ch; }
.list li {
  color: var(--muted); padding: 18px 0 18px 26px;
  border-top: 1px solid var(--line-soft); position: relative;
}
.list li:last-child { border-bottom: 1px solid var(--line-soft); }
.list li::before {
  content: ""; position: absolute; left: 0; top: 30px;
  width: 12px; height: 1px; background: var(--gold);
}
.list li strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 3px; }

/* ---------------------------------------------------------- portfolio */

.region-nav {
  position: sticky; top: var(--nav-h); z-index: 60;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-block: 1px solid var(--line-soft);
}
.region-nav ul {
  list-style: none; display: flex; gap: 28px;
  overflow-x: auto; scrollbar-width: none; padding-block: 16px;
}
.region-nav ul::-webkit-scrollbar { display: none; }
.region-nav a {
  white-space: nowrap; font-size: 12px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted);
  transition: color 0.18s ease;
}
.region-nav a:hover { color: var(--gold); }

.region { padding-block: clamp(52px, 7vw, 88px); scroll-margin-top: calc(var(--nav-h) + 58px); }
.region + .region { border-top: 1px solid var(--line-soft); }
.region-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 8px; }
.region-count { font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--faint); }

.courses {
  display: grid; gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}
.entry { background: var(--bg); padding: clamp(24px, 2.6vw, 32px); }
.entry h2 {
  font-family: var(--sans); font-size: 16.5px; font-weight: 600;
  line-height: 1.3; letter-spacing: 0.01em;
}
.entry .loc {
  margin-top: 6px; font-size: 13px; color: var(--gold);
  font-style: italic; font-family: var(--serif); letter-spacing: 0.01em;
}
.entry ul { list-style: none; margin-top: 18px; }
.entry li {
  font-size: 14px; line-height: 1.55; color: var(--muted);
  padding: 7px 0 7px 18px; position: relative;
}
.entry li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 6px; height: 1px; background: var(--gold-dim);
}
.entry li b { color: var(--text); font-weight: 600; }

/* ---------------------------------------------------------- events */

.event {
  display: grid; gap: 8px 32px; padding-block: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--line-soft);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 800px) { .event { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); } }
.event:last-of-type { border-bottom: 1px solid var(--line-soft); }
.event h3 { font-family: var(--serif); font-size: clamp(23px, 2.4vw, 29px); }
.event .where { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
.event p { color: var(--muted); font-size: 16px; }

/* ---------------------------------------------------------- contact / cta */

.cta {
  padding-block: clamp(72px, 10vw, 128px);
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(201, 168, 108, 0.10), transparent 62%),
    var(--bg);
  text-align: center;
}
.cta .prose { margin-inline: auto; margin-top: 22px; }
.cta-actions { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-grid {
  display: grid; gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); margin-top: 48px; text-align: left;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.contact-card { background: var(--bg); padding: clamp(26px, 3vw, 34px); }
.contact-card h2 { font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.02em; }
.contact-card p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
.contact-card a.mail {
  display: inline-block; margin-top: 16px; color: var(--gold);
  font-size: 15px; text-decoration: underline; text-underline-offset: 4px;
  word-break: break-word;
}

/* ---------------------------------------------------------- footer */

.footer { border-top: 1px solid var(--line-soft); padding-block: clamp(48px, 6vw, 72px) 36px; }
.footer-top {
  display: grid; gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding-bottom: 44px;
}
.footer-brand img { height: 34px; width: auto; }
.footer-brand p { margin-top: 18px; font-size: 14px; color: var(--faint); max-width: 30ch; }
.footer-col h3 {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--muted); transition: color 0.18s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bot {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--faint);
}

/* ---------------------------------------------------------- utility */

.mt-l { margin-top: clamp(36px, 5vw, 56px); }
.mt-m { margin-top: 28px; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------- breadcrumbs */

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 22px;
}
.crumbs a { color: var(--muted); transition: color 0.18s ease; }
.crumbs a:hover { color: var(--gold); }
.crumbs span[aria-hidden] { color: var(--faint); }

/* ------------------------------------------------- full course index list */

.index-list {
  list-style: none;
  columns: 2; column-gap: clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--line-soft);
}
@media (min-width: 1100px) { .index-list { columns: 3; } }
@media (max-width: 620px)  { .index-list { columns: 1; } }

.index-list li { break-inside: avoid; }
.index-list a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line-soft);
  transition: color 0.18s ease;
}
.index-list a:hover { color: var(--gold); }
.index-list a span { font-size: 15px; }
.index-list a em {
  font-style: normal; font-size: 11.5px; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--faint); white-space: nowrap; flex: 0 0 auto;
}

/* course-entry headings become links once a course has its own page */
.entry h2 a { transition: color 0.18s ease; }
.entry h2 a:hover { color: var(--gold); }
.entry h2 a::after { content: " \2192"; color: var(--gold); font-weight: 400; }

/* ---------------------------------------------------------- citation chips */

.chip--link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--muted); transition: color 0.18s ease, border-color 0.18s ease;
}
.chip--link:hover { color: var(--gold); border-color: var(--gold-dim); }
.chip--link span { font-size: 10px; opacity: 0.75; }

/* years an award is on record for */
.years {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line-soft);
}
.years-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--faint); margin-right: 4px;
}
.years-span {
  font-family: var(--serif); font-size: 22px; color: var(--gold);
  margin-right: 8px; font-variant-numeric: tabular-nums;
}
.year {
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
  border: 1px solid var(--line-soft); padding: 4px 9px;
  font-variant-numeric: tabular-nums;
}

/* a note that isn't part of the award record */
.note {
  border-left: 2px solid var(--gold-dim); background: var(--surface);
  padding: 20px 24px; max-width: 68ch;
}
.note p { color: var(--muted); font-size: 15.5px; }
.note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------- pull quote */

.pullquote { margin-top: clamp(40px, 6vw, 64px); max-width: 62ch; }
.pullquote-lead {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 18px;
}
.pullquote blockquote {
  border-left: 2px solid var(--gold); padding-left: clamp(20px, 3vw, 32px);
}
.pullquote blockquote p {
  font-family: var(--serif); font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.32; color: var(--text); text-wrap: balance;
}
.pullquote figcaption {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px;
  margin-top: 22px; padding-left: clamp(22px, 3vw, 34px);
  font-size: 13px; color: var(--muted);
}
.pullquote figcaption strong { color: var(--text); font-weight: 600; }
.pullquote figcaption span { color: var(--faint); }
.pullquote figcaption a {
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
}

/* ---------------------------------------------------------- touch targets */
/* WCAG 2.5.8 wants 24x24 CSS px minimum; primary controls get 44px on touch.
   Inline links inside running prose are exempt and left alone. */

.brand { padding-block: 7px; }        /* 30px wordmark -> 44px target */
.arrow-link { padding-block: 11px; }  /* 21px -> 43px, and it reads better spaced */
.years-label { font-size: 12px; }

@media (max-width: 900px) {
  .chip, .chip--link { padding: 11px 14px; }          /* 36px -> 44px */

  .footer-col ul { gap: 2px; }
  .footer-col a,
  .contact-card a.mail,
  .list li > a:only-child {
    display: flex; align-items: center; min-height: 44px;
  }
  .crumbs { gap: 6px 10px; }
  .crumbs a { display: inline-flex; align-items: center; min-height: 32px; }

  /* the drawer already sets its own row height — don't let the rule above
     fight it */
  .nav-links a { min-height: 56px; }
}

@media (max-width: 900px) {
  /* course-name links on the region hubs are primary navigation, not prose */
  .entry h2 a { display: inline-flex; align-items: center; min-height: 44px; }
}
