


:root {
  --black: #000000;
  --ink: #1A1A1A;
  --yellow: #FFDD00;
  --yellow-deep: #F5C400;
  --lilac: #C9B8FF;
  --lilac-deep: #B39FF5;
  --plum: #4B2E83;
  --paper: #FAF8F2;
  --white: #FFFFFF;
  --ochre: #6F5900;
  --grey-100: #B8B8B8;
  --grey-700: #4A4A4A;
  --line-dark: #2E2E2E;
  --line-light: #E3E0D8;

  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;

  --container-max: 80rem;
  --gutter: 1.5rem;
  --page-pad: 1.5rem;
  --section-pad-v: 4rem;

  --radius-btn: 2px;
}

@media (min-width: 768px) {
  :root {
    --page-pad: 3rem;
    --section-pad-v: 6rem;
  }
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }


.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}


.t-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.t-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.125rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.t-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.t-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.25;
}
.t-lead {
  font-family: var(--font-body);
  font-size: 1.375rem;
  line-height: 1.45;
}
.t-ui {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
}
.t-small {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
}


.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border: none;
}
.btn-primary:hover { background: var(--yellow-deep); }
.btn-primary:focus-visible { outline-color: var(--white); }

.btn-secondary-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-secondary-dark:hover {
  background: var(--white);
  color: var(--black);
}
.btn-secondary-dark:focus-visible { outline-color: var(--white); }

.btn-secondary-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary-light:hover {
  background: var(--black);
  color: var(--white);
}
.btn-secondary-light:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.btn-newsletter {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  white-space: nowrap;
}
.btn-newsletter:hover { background: var(--ink); }
.btn-newsletter:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}


.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  letter-spacing: 0;
}
.tag-stories, .tag-profile, .tag-lists {
  background: var(--yellow);
  color: var(--black);
}
.tag-podcast {
  background: var(--lilac);
  color: var(--black);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1.5rem;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.wordmark-dot { color: var(--yellow); }
.wordmark:hover { opacity: 0.85; }
.wordmark:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.site-header nav { display: none; }
@media (min-width: 900px) { .site-header nav { display: block; } }

[data-pn-nav="primary"] {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
[data-pn-nav="primary"] li { display: flex; }
[data-pn-nav="primary"] a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  padding: 0.5rem 0.75rem;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}
[data-pn-nav="primary"] a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 150ms ease;
}
[data-pn-nav="primary"] a:hover::after,
[data-pn-nav="primary"] a[aria-current="page"]::after { transform: scaleX(1); }
[data-pn-nav="primary"] a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
[data-pn-nav="primary"] [data-pn-cta] a { padding: 0; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  flex-shrink: 0;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }


.drawer {
  display: none;
  position: fixed;
  inset: 4rem 0 0 0;
  z-index: 99;
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  overflow-y: auto;
}
@media (max-width: 899px) { .drawer { display: block; } }

.drawer[aria-hidden="true"] { display: none; }
.drawer-inner { padding: 2rem var(--page-pad); }

[data-pn-nav="drawer"] {
  display: flex;
  flex-direction: column;
  gap: 0;
}
[data-pn-nav="drawer"] li {
  border-bottom: 1px solid var(--line-dark);
}
[data-pn-nav="drawer"] a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  display: block;
  padding: 1rem 0;
  min-height: 56px;
  display: flex;
  align-items: center;
}
[data-pn-nav="drawer"] a:hover { color: var(--yellow); }
[data-pn-nav="drawer"] a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
[data-pn-nav="drawer"] [data-pn-cta] {
  border-bottom: none;
  padding-top: 1.5rem;
}
[data-pn-nav="drawer"] [data-pn-cta] a {
  font-size: 1rem;
  min-height: 44px;
}


.hero {
  background: var(--black);
  padding-top: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .hero { padding-top: 5rem; padding-bottom: 6rem; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.hero-line { display: block; }
.hero-yellow { color: var(--yellow); }

.hero-line-1 {
  animation: slideUp 500ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-line-2 {
  animation: slideUp 500ms 160ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes slideUp {
  from { transform: translateY(1.5rem); opacity: 0; }
  to   { transform: translateY(0);      opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-line-1, .hero-line-2 { animation: none; }
}

.hero-standfirst {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--grey-100);
  max-width: 36rem;
  margin-bottom: 2rem;
}
.hero-cta { flex-shrink: 0; }
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }

.hero-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 300ms ease;
  display: block;
}
.hero-img:hover { filter: grayscale(0); }

.hero-image-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-image-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey-100);
}


.latest-section {
  background: var(--paper);
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 1rem;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-row {
  border-top: 1px solid var(--line-light);
}
.story-row:last-child { border-bottom: 1px solid var(--line-light); }

.story-row-link {
  display: block;
  padding: 1.25rem 0;
  color: var(--ink);
  text-decoration: none;
}
.story-row-link:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.story-row-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.story-meta-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.story-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--ink);
  transition: text-decoration 120ms ease;
}
.story-row-link:hover .story-headline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.story-dek {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--grey-700);
  max-width: 52ch;
}

.story-date {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey-700);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.latest-footer {
  margin-top: 2.5rem;
}


.profiles-section {
  background: var(--black);
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.section-title-light {
  color: var(--white);
  border-bottom-color: var(--line-dark);
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .profiles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }
}

.profile-card { display: flex; flex-direction: column; }

/* Profile entries carry no photograph. Rather than leave the space a picture
   would have filled, the card is set typographically: a rule in the accent
   colour, the name in display type, the role beneath it, and one line on why
   the person is here. The rule is what makes it read as a designed index entry
   instead of an image that failed to load. */
.profile-entry {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 3px solid var(--yellow);
  padding-top: 0.9rem;
}
.profile-entry .profile-name { margin-top: 0; font-size: 1.25rem; line-height: 1.2; }
.profile-entry .profile-role { margin-bottom: 0.35rem; }
.menu-profile-card-light .profile-entry { border-top-color: var(--plum); }

/* Profile entries carry no photograph. Rather than leave the space a picture
   would have filled, the card is set typographically: a rule in the accent
   colour, the name in display type, the role beneath it, and one line on why
   the person is here. The rule is what makes it read as a designed index entry
   instead of an image that failed to load. */
.profile-entry {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 3px solid var(--yellow);
  padding-top: 0.9rem;
}
.profile-entry .profile-name { margin-top: 0; font-size: 1.25rem; line-height: 1.2; }
.profile-entry .profile-role { margin-bottom: 0.35rem; }
.menu-profile-card-light .profile-entry { border-top-color: var(--plum); }
.profile-card-link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}
.profile-card-link:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.profile-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%;
}
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 300ms ease;
}
.profile-card-link:hover .profile-img { filter: grayscale(0); }

.profile-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-top: 0.25rem;
}
.profile-role {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--lilac);
  line-height: 1.4;
}
.profile-why {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--grey-100);
}


.podcasts-section {
  background: var(--lilac);
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.podcasts-section .section-title {
  color: var(--black);
  border-bottom-color: rgba(0,0,0,0.2);
  margin-bottom: 0.5rem;
}
.podcasts-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--black);
  margin-bottom: 2.5rem;
  opacity: 0.75;
}

.podcast-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .podcast-tiles { grid-template-columns: repeat(4, 1fr); }
}

.podcast-tile {
  background: var(--black);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.podcast-cover-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.podcast-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-play {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 120ms ease;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
}
.podcast-play:hover { background: var(--lilac-deep); }
.podcast-play:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

.podcast-show {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.podcast-episode {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--grey-100);
}
.podcast-duration {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--grey-100);
  margin-top: auto;
}

.podcasts-footer { margin-top: 2.5rem; }


.newsletter-section {
  background: var(--yellow);
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .newsletter-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

.newsletter-text { flex: 1; }
.newsletter-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--black);
  max-width: 28ch;
  margin-bottom: 0.75rem;
}
.newsletter-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--black);
  opacity: 0.75;
}

.newsletter-form { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.newsletter-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
}
.newsletter-form-row {
  display: flex;
  gap: 0;
}
.newsletter-input {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
  border-right: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-btn) 0 0 var(--radius-btn);
  min-height: 44px;
  outline: none;
}
.newsletter-input:focus { border-color: var(--black); box-shadow: 0 0 0 2px var(--black); z-index: 1; position: relative; }
.newsletter-form .btn-newsletter {
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
}
.newsletter-legal {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--black);
  opacity: 0.65;
}


.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-inner { display: flex; flex-direction: column; gap: 2rem; }
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}
.footer-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--grey-100);
  padding: 0.25rem 0.5rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.footer-copy {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey-100);
}


*:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }


@media (max-width: 540px) {
  .story-dek { display: none; }
  .story-date { display: none; }
  .podcast-tiles { grid-template-columns: 1fr 1fr; }
}



.menu-intro {
  background: var(--black);
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 768px) {
  .menu-intro { padding-top: 5rem; padding-bottom: 5rem; }
}

.menu-intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .menu-intro-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 4rem;
  }
}

.menu-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.menu-intro-dek {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--grey-100);
  max-width: 52ch;
}

.menu-nav-anchors {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 900px) {
  .menu-nav-anchors {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    flex-shrink: 0;
  }
}

.menu-anchor-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-btn);
  transition: border-color 120ms ease, color 120ms ease, background 120ms ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.menu-anchor-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.menu-anchor-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.menu-section {
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.menu-section-light {
  background: var(--paper);
}

.menu-section-dark {
  background: var(--black);
}

.menu-section-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-light);
}
.menu-section-dark .menu-section-header {
  border-bottom-color: var(--line-dark);
}
.podcasts-section .menu-section-header {
  border-bottom-color: rgba(0,0,0,0.2);
}
@media (min-width: 900px) {
  .menu-section-header {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
  }
}

.menu-section-label-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.menu-section-title-light {
  color: var(--white);
}

.podcasts-section .menu-section-title {
  color: var(--black);
}

.menu-section-desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--grey-700);
}
@media (min-width: 900px) {
  .menu-section-desc { padding-top: 2rem; }
}

.menu-section-desc-light {
  color: var(--grey-100);
}

.podcasts-section .menu-section-desc {
  color: var(--black);
  opacity: 0.75;
}

.menu-section-footer {
  margin-top: 2.5rem;
}

.menu-profiles-grid {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .menu-profiles-grid { grid-template-columns: repeat(4, 1fr); }
}

.menu-profile-card-link-light {
  color: var(--ink);
}
.menu-profile-card-link-light:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.menu-profile-name-light {
  color: var(--ink);
}

.menu-profile-role-light {
  color: var(--plum);
}

.menu-profile-why-light {
  color: var(--grey-700);
}

.story-row-dark {
  border-top-color: var(--line-dark);
}
.story-row-dark:last-child {
  border-bottom-color: var(--line-dark);
}

.story-row-link-dark {
  color: var(--white);
}
.story-row-link-dark:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.story-headline-dark {
  color: var(--white);
}

.story-dek-dark {
  color: var(--grey-100);
}

.story-date-dark {
  color: var(--grey-100);
}

.lists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.lists-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-light);
  text-decoration: none;
  color: var(--ink);
  transition: background 120ms ease;
}
.lists-item:last-child {
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 600px) {
  .lists-item {
    grid-template-columns: 10rem 1fr;
    gap: 2rem;
    align-items: center;
  }
}
@media (min-width: 900px) {
  .lists-item {
    grid-template-columns: 14rem 1fr;
  }
}

.lists-item:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.lists-item-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .lists-item-image-wrap { aspect-ratio: 3/2; }
}

.lists-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 300ms ease;
}
.lists-item:hover .lists-item-image { filter: grayscale(0); }

.lists-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lists-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--ink);
  transition: text-decoration 120ms ease;
}
.lists-item:hover .lists-item-title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.lists-item-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--grey-700);
  max-width: 52ch;
}

.lists-item-meta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey-700);
}

@media (max-width: 540px) {
  .menu-profiles-grid { grid-template-columns: 1fr 1fr; }
  .lists-item-image-wrap { display: none; }
  .story-dek-dark, .story-date-dark { display: none; }
}






.about-hero {
  background: var(--black);
  padding-top: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .about-hero { padding-top: 5rem; padding-bottom: 6rem; }
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
}
.about-h1-line { display: block; }
.about-h1-yellow { color: var(--yellow); }

.about-standfirst {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.5;
  color: var(--grey-100);
  max-width: 38rem;
}

.about-hero-image-wrap {
  width: 100%;
}
.about-hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 300ms ease;
  display: block;
}
.about-hero-img:hover { filter: grayscale(0); }


.about-mission {
  background: var(--paper);
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-mission-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-mission-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.about-body-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 40rem;
  margin-bottom: 1.25rem;
}
.about-body-text:last-child { margin-bottom: 0; }

.pull-quote-block {
  border-left: 6px solid var(--lilac);
  padding-left: 1.5rem;
  margin: 0;
}
@media (min-width: 900px) {
  .pull-quote-block {
    position: sticky;
    top: 6rem;
  }
}
.pull-quote-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.5;
  color: var(--ink);
}


.about-what-we-make {
  background: var(--paper);
  padding-top: 0;
  padding-bottom: var(--section-pad-v);
  border-top: 1px solid var(--line-light);
}
.about-what-we-make .section-title {
  padding-top: var(--section-pad-v);
  margin-bottom: 0;
}

.content-types-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.content-type-item {
  border-top: 1px solid var(--line-light);
  padding: 1.75rem 0;
}
.content-type-item:last-child {
  border-bottom: 1px solid var(--line-light);
}

.content-type-inner {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .content-type-inner {
    grid-template-columns: 8rem 1fr;
    gap: 2rem;
  }
}

.content-type-inner .tag {
  margin-top: 0.25rem;
}

.content-type-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.content-type-desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--grey-700);
  max-width: 52ch;
}


.about-audience {
  background: var(--black);
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.about-audience-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-audience-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-audience-image-wrap {
  width: 100%;
  order: 2;
}
@media (min-width: 900px) {
  .about-audience-image-wrap { order: 1; }
}
.about-audience-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 300ms ease;
  display: block;
}
.about-audience-img:hover { filter: grayscale(0); }

.about-audience-text {
  order: 1;
}
@media (min-width: 900px) {
  .about-audience-text { order: 2; }
}

.about-audience-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.about-body-text-light {
  color: var(--grey-100);
  max-width: 38rem;
}

.about-audience-cta {
  margin-top: 2rem;
}






.contact-hero {
  background: var(--black);
  padding-top: 3rem;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .contact-hero { padding-top: 5rem; }
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
}
@media (min-width: 900px) {
  .contact-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
  }
}

.contact-hero-text {
  padding-bottom: 4rem;
}
@media (min-width: 900px) {
  .contact-hero-text { padding-bottom: 5rem; }
}

.contact-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.contact-intro {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--grey-100);
  max-width: 38rem;
}

.contact-hero-img-wrap {
  overflow: hidden;
  align-self: end;
}

.contact-hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
  transition: filter 300ms ease;
}
.contact-hero-img:hover { filter: grayscale(0); }


.contact-routes-section {
  background: var(--paper);
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.contact-routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .contact-routes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.contact-route {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-route {
    padding: 0 2.5rem 0 0;
    border-top: none;
    border-left: 1px solid var(--line-light);
    padding-left: 2.5rem;
  }
  .contact-route:first-child {
    border-left: none;
    padding-left: 0;
  }
}

.contact-route-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 0.25rem;
}

.contact-route-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey-700);
  flex: 1;
}

.contact-route-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 120ms ease;
}
.contact-route-link:hover { color: var(--black); }
.contact-route-link:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.contact-route-link-light {
  color: var(--ochre);
}

.contact-route-note {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--grey-700);
  border-left: 3px solid var(--lilac);
  padding-left: 0.75rem;
}


.contact-general-section {
  background: var(--black);
  padding-top: var(--section-pad-v);
  padding-bottom: var(--section-pad-v);
}

.contact-general-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-general-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-general-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact-general-body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--grey-100);
  margin-bottom: 1.5rem;
  max-width: 38rem;
}

.contact-general-text .contact-route-link {
  color: var(--yellow);
  font-size: 1.125rem;
}
.contact-general-text .contact-route-link:hover { color: var(--white); }

.contact-general-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.contact-aside-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--lilac);
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
  letter-spacing: 0;
  border-top: 1px solid var(--line-dark);
}
.contact-aside-label:first-child { border-top: none; }

.contact-aside-value {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--grey-100);
  padding-bottom: 1.25rem;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}

/* Podcast tiles carry no cover art: using a stock photo as a show's artwork
   implies it is the show's artwork. Set typographically instead, matching the
   profile entries. */
.podcast-entry {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 3px solid var(--lilac);
  padding-top: 0.9rem;
}
.podcast-entry .podcast-show { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--white); }
/* The tile is pure black, so these take the light-on-dark pair. The plum and
   grey-700 used elsewhere are for the cream sections and measure 1.7:1 and
   2.4:1 here — both well under the 4.5:1 floor. */
.podcast-host { font-family: var(--font-display); font-weight: 500; font-size: 0.85rem; color: var(--lilac); }
.podcast-note { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.5; color: var(--grey-100); }


/* ---- Watchlist entry pages ------------------------------------------------
   These are index cards, not editorial profiles: who the person is, and where
   to find their own work. The section is named "Who we're watching" rather than
   "Profiles" because Feisty has not written a profile of any of them, and a
   heading should not claim otherwise. */
.watching-name-link { color: inherit; text-decoration: none; }
.watching-name-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.watching-name-link:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.podcast-show-link { color: inherit; text-decoration: none; }
.podcast-show-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.podcast-show-link:focus-visible { outline: 2px solid var(--lilac); outline-offset: 3px; }

.watching-hero { background: var(--black); padding: 4rem 0 3rem; }
.watching-eyebrow { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.04em; margin-bottom: 1.25rem; }
.watching-eyebrow a { color: var(--yellow); text-decoration: none; }
.watching-eyebrow a:hover { text-decoration: underline; }
.watching-name {
  font-family: var(--font-display); font-weight: 700; color: var(--white);
  font-size: clamp(2.25rem, 6vw, 4rem); line-height: 1.04; margin: 0 0 0.6rem;
}
.watching-role { font-family: var(--font-display); font-weight: 500; color: var(--lilac); font-size: 1.05rem; margin-bottom: 1rem; }
.watching-lead { font-family: var(--font-body); color: var(--grey-100); font-size: 1.2rem; line-height: 1.55; max-width: 46rem; }

.watching-body { background: var(--paper); padding: 3.5rem 0 4.5rem; }
.watching-para { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.7; color: var(--ink); max-width: 42rem; margin-bottom: 1.25rem; }
.watching-links-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 2.25rem 0 0.9rem; }
.watching-links { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.watching-links li { margin: 0; }
.watching-link {
  display: inline-block; font-family: var(--font-display); font-size: 0.9rem;
  padding: 0.45rem 0.9rem; border: 2px solid var(--ink); color: var(--ink); text-decoration: none;
}
.watching-link:hover { background: var(--yellow); }
.watching-link:focus-visible { outline: 2px solid var(--plum); outline-offset: 2px; }
/* Stated plainly, because a page about a person on someone else's site should
   not be mistaken for one they authorised. */
.watching-note { font-family: var(--font-body); font-size: 0.9rem; color: var(--grey-700); max-width: 42rem; }


/* The uploaded logo is a mark, not a wordmark — a roundel with an F in it — so
   it sits beside the "feisty." lettering rather than replacing it. Width and
   height are set to reserve the space before it loads. */
.wordmark { display: inline-flex; align-items: center; gap: 0.5rem; }
.wordmark-mark { width: 1.9rem; height: 1.9rem; display: block; }
@media (max-width: 600px) { .wordmark-mark { width: 1.6rem; height: 1.6rem; } }

/* pn-article-styles:begin */
.pn-article *,
.pn-article *::before,
.pn-article *::after {
  box-sizing: border-box;
}

.pn-article {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  padding-inline: var(--page-pad);
  padding-top: 5rem;
  padding-bottom: var(--section-pad-v);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-wrap: break-word;
  word-break: break-word;
}

.pn-article__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-light);
}

.pn-article__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  overflow-wrap: break-word;
}

.pn-article__byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey-700);
  line-height: 1.4;
}

.pn-article__byline a {
  color: var(--plum);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

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

.pn-article__hero {
  width: 100%;
  margin-inline: calc(var(--page-pad) * -1);
  width: calc(100% + var(--page-pad) * 2);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pn-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 32rem;
  object-fit: cover;
}

.pn-article__hero .photo-credit {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--grey-700);
  line-height: 1.4;
  padding-inline: var(--page-pad);
}

.pn-article__body {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--ink);
}

.pn-article__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
}

.pn-article__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
  overflow-wrap: break-word;
}

.pn-article__body p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
}

.pn-article__body p:last-child {
  margin-bottom: 0;
}

.pn-article__body a {
  color: var(--plum);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 120ms ease;
}

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

.pn-article__body a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 1px;
}

.pn-article__body ul,
.pn-article__body ol {
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style: revert;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pn-article__body li {
  font-family: var(--font-body);
  font-size: inherit;
  line-height: 1.65;
  color: var(--ink);
}

.pn-article__body figure {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pn-article__body img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: initial;
}

.pn-article__body figure img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

.pn-article__body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--yellow);
  background: transparent;
  color: var(--grey-700);
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.6;
  font-style: italic;
}

.pn-article__body blockquote p {
  margin-bottom: 0;
}

.pn-article__body svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/* pn-article-styles:end */


/* Footer sections. Nine links in one row reads as a dump; three short titled
   columns reads as a site map. Collapses to one column on a phone, where the
   titles are what keeps it scannable. */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
}
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; } }
.footer-col-title {
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow);
  margin: 0 0 0.6rem;
}
.footer-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav-list a { font-family: var(--font-body); font-size: 0.95rem; color: var(--grey-100); text-decoration: none; }
.footer-nav-list a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-nav-list a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
/* the top row was laid out for a single inline list */
.footer-top { align-items: flex-start; gap: 2rem; }

/* pn-blog-styles:begin */
.pn-bloglist{display:grid;gap:clamp(1.5rem,4vw,2.25rem);margin:0;padding:0;list-style:none;}
.pn-bloglist__item{display:grid;grid-template-columns:minmax(0,1fr);gap:.85rem;padding-bottom:clamp(1.5rem,4vw,2.25rem);border-bottom:1px solid var(--border, rgba(0,0,0,.12));}
.pn-bloglist__item:last-child{border-bottom:0;padding-bottom:0;}
@media (min-width:40rem){.pn-bloglist__item--media{grid-template-columns:minmax(0,14rem) minmax(0,1fr);gap:1.5rem;align-items:start;}}
.pn-bloglist__thumb{display:block;margin:0;}
.pn-bloglist__thumb img{width:100%!important;height:auto!important;display:block;aspect-ratio:16/10;object-fit:cover;border-radius:var(--radius, 6px);}
.pn-bloglist__body{min-width:0;}
.pn-bloglist__title{font-family:var(--font-serif, inherit);font-size:clamp(1.15rem,3.2vw,1.5rem);line-height:1.25;margin:0 0 .4rem;overflow-wrap:break-word;}
.pn-bloglist__title a{color:var(--brown, var(--text, inherit));text-decoration:none;}
.pn-bloglist__title a:hover{text-decoration:underline;}
.pn-bloglist__meta{font-size:.8rem;letter-spacing:.04em;opacity:.65;margin:0 0 .5rem;}
.pn-bloglist__excerpt{margin:0;line-height:1.6;opacity:.85;overflow-wrap:break-word;}
.pn-bloglist__empty{opacity:.7;}
.pn-bloglist__cats{display:flex;flex-wrap:wrap;gap:.5rem;margin:0 0 clamp(1.25rem,3.5vw,2rem);padding:0;list-style:none;}
.pn-bloglist__cat{display:inline-flex;align-items:center;gap:.4em;padding:.35em .8em;border:1px solid var(--border, rgba(0,0,0,.15));border-radius:999px;font-size:.82rem;line-height:1;text-decoration:none;color:var(--text, inherit);opacity:.85;}
.pn-bloglist__cat:hover{opacity:1;border-color:var(--brown, var(--accent, currentColor));}
.pn-bloglist__cat--current{background:var(--brown, var(--accent, rgba(0,0,0,.06)));color:var(--bg, #fff);border-color:transparent;opacity:1;}
.pn-bloglist__cat-n{font-size:.75em;opacity:.7;}
.pn-bloglist__cat--current .pn-bloglist__cat-n{opacity:.85;}
/* pn-blog-styles:end */


/* Section hub listing. The page keeps its explainer and gains a way through to
   everything filed under the same topic, which is what a URL named after a
   section should offer. */
.hub-section { background: var(--black); padding: 3.5rem 0 4rem; }
.hub-heading { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: clamp(1.6rem,3.5vw,2.4rem); margin: 0 0 .4rem; }
.hub-sub { font-family: var(--font-body); color: var(--grey-100); margin: 0 0 2rem; }
.hub-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; }
@media (max-width: 900px) { .hub-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hub-list { grid-template-columns: 1fr; } }
.hub-link { display: flex; flex-direction: column; gap: .35rem; text-decoration: none; border-top: 3px solid var(--yellow); padding-top: .85rem; height: 100%; }
.hub-kind { font-family: var(--font-display); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--lilac); }
.hub-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.25; color: var(--white); }
.hub-desc { font-family: var(--font-body); font-size: .92rem; line-height: 1.5; color: var(--grey-100); }
.hub-link:hover .hub-title { text-decoration: underline; text-underline-offset: 3px; }
.hub-link:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

/* pn-tables:begin — data tables inside article bodies */
.pn-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 1.5rem;
  border-top: 3px solid var(--yellow);
  max-width: 100%;
  min-width: 0;
}
.pn-article__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  line-height: 1.5;
  text-align: left;
}
.pn-article__body thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--grey-700);
  padding: 0.85rem 1rem 0.6rem 0;
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}
.pn-article__body tbody th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 1.25rem 0.75rem 0;
  border-bottom: 1px solid var(--line-light);
  white-space: nowrap;
}
.pn-article__body td {
  font-family: var(--font-body);
  color: var(--ink);
  vertical-align: top;
  padding: 0.75rem 1rem 0.75rem 0;
  border-bottom: 1px solid var(--line-light);
}
.pn-article__body tbody tr:last-child th,
.pn-article__body tbody tr:last-child td {
  border-bottom: 0;
}
.pn-article__body td:last-child,
.pn-article__body th:last-child {
  padding-right: 0;
}
/* pn-tables:end */
