:root {
  --cyan: #13ace9;
  --mint: #12ecaa;
  --blue: #0877eb;
  --yellow: #e9ff00;
  --pink: #d600ed;
  --orange: #ffad0a;
  --ink: #16131c;
  --paper: #fffdf5;
  --rounded: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -3rem;
  z-index: 10;
  background: var(--yellow);
  padding: 0.5rem 1rem;
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.35rem clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.wordmark {
  font-family: var(--rounded);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 0.8;
  text-decoration: none;
  letter-spacing: -0.05em;
  text-shadow: 2px 2px 0 var(--ink);
}
.wordmark span {
  display: block;
  font-size: 0.73em;
  letter-spacing: 0;
}
.site-header nav {
  display: flex;
  gap: clamp(0.6rem, 2.1vw, 2rem);
}
.header-links,
.platform-links {
  display: flex;
  align-items: center;
}
.header-links {
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
.platform-links {
  gap: 0.45rem;
}
.platform-link {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  transition: opacity 0.2s ease;
}
.platform-link:hover,
.platform-link:focus-visible {
  opacity: 0.72;
}
.platform-link img {
  width: 1.3rem;
  height: 1.3rem;
}
.mpr-platform-link {
  width: 3.5rem;
}
.mpr-platform-link img {
  width: 2.65rem;
  height: auto;
  filter: invert(1);
  translate: 0 0.16rem;
}
.site-header nav a {
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.site-header nav a:hover,
.site-header nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.hero {
  min-height: 790px;
  padding: 9rem clamp(1.25rem, 8vw, 9.5rem) 4rem;
  background: var(--cyan);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: 3rem;
}
.circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  z-index: -1;
}
.mint {
  background: var(--mint);
}
.blue {
  background: var(--blue);
}
.yellow {
  background: var(--yellow);
}
.pink {
  background: var(--pink);
}
.orange {
  background: var(--orange);
}
.hero-mint {
  width: 48vw;
  aspect-ratio: 1;
  top: -31vw;
  left: -15vw;
}
.hero-blue {
  width: 44vw;
  aspect-ratio: 1;
  right: -24vw;
  top: -12vw;
}
.hero-yellow {
  width: 15rem;
  aspect-ratio: 1;
  left: 40%;
  bottom: 5rem;
}
.eyebrow,
.section-label span {
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 0.5rem;
}
.mpr-presents {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-size: 1.2rem;
  line-height: 2;
}
.mpr-presents img {
  width: auto;
  height: 1.1rem;
  translate: 0 0.25rem;
}
.hero-copy {
  max-width: 630px;
  position: relative;
  z-index: 1;
}
.hero h1,
.hero h1 span {
  font-family: var(--rounded);
  font-size: clamp(4.6rem, 10vw, 8.6rem);
  line-height: 0.66;
  letter-spacing: -0.07em;
  margin: 0;
  color: white;
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 var(--ink);
}
.hero h1 span {
  display: block;
  font-size: 0.83em;
  margin-left: -0.08em;
}
.tagline {
  color: var(--ink);
  font-family: var(--rounded);
  font-size: clamp(1.5rem, 2.7vw, 2.3rem);
  font-weight: 800;
  margin: 2.5rem 0 0.5rem;
}
.intro {
  max-width: 520px;
  font-size: 1.08rem;
  font-weight: 500;
  margin: 0 0 1.8rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.primary {
  background: var(--yellow);
}
.secondary {
  background: white;
}
.hero-art {
  min-height: 500px;
  position: relative;
  z-index: 1;
}
.hero-art .pink {
  width: 22rem;
  aspect-ratio: 1;
  top: 1rem;
  right: 9%;
  z-index: -1;
}
.hero-art .orange {
  width: 13rem;
  aspect-ratio: 1;
  bottom: 0;
  left: 3%;
  z-index: -1;
}
.hero-art img {
  width: min(100%, 485px);
  height: 500px;
  object-fit: cover;
  object-position: center;
  clip-path: ellipse(45% 47% at 53% 52%);
  filter: drop-shadow(6px 7px 0 var(--ink));
  margin: 0 auto;
  display: block;
}
.episode-count {
  position: absolute;
  right: 0;
  bottom: 2.4rem;
  border: 3px solid var(--ink);
  background: var(--yellow);
  width: 154px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(8deg);
}
.episode-count strong {
  font-family: var(--rounded);
  font-size: 4rem;
  line-height: 0.7;
}
.episode-count span {
  text-transform: uppercase;
  font-size: 0.67rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.wrap {
  max-width: 1180px;
  margin: auto;
  padding-left: clamp(1.25rem, 5vw, 4rem);
  padding-right: clamp(1.25rem, 5vw, 4rem);
}
.latest {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.latest-orb {
  width: 15rem;
  aspect-ratio: 1;
  top: 3rem;
  right: -5rem;
}
.section-label {
  position: relative;
  z-index: 1;
}
.section-label h2,
.about h2,
.listen h2 {
  margin: 0;
  font-family: var(--rounded);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
}
.section-label h2 em,
.about h2 em,
.listen h2 em {
  color: var(--pink);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
}
.latest-episode {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
.latest-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  background: white;
  border: 3px solid var(--ink);
  border-radius: 1.2rem;
  padding: 1.2rem;
  box-shadow: 8px 8px 0 var(--ink);
}
.episode-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.episode-date {
  color: #56515f;
  font-size: 0.84rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}
.latest-inner h3,
.episode h3,
.host h3 {
  font-family: var(--rounded);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 0.7rem;
}
.latest-inner p:not(.episode-date) {
  margin: 0.5rem 0 1rem;
  max-width: 650px;
}
.text-link {
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}
.episode-player {
  display: grid;
  grid-template-columns: auto auto minmax(4rem, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
}
.latest-inner .episode-player {
  grid-column: 2;
  margin-top: 0;
  padding-top: 0;
}
.episode-audio {
  display: none;
}
.play-button {
  min-width: 4.75rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.45rem 0.8rem;
  font: 700 0.88rem var(--body);
  cursor: pointer;
}
.play-button:hover:not(:disabled),
.play-button:focus-visible:not(:disabled) {
  background: var(--mint);
}
.play-button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
.player-time {
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.player-progress {
  width: 100%;
  accent-color: var(--pink);
}
.episodes-section {
  background: var(--blue);
  color: white;
  padding: 6rem 0;
  position: relative;
}
.episodes-section::after {
  content: "";
  position: absolute;
  width: 22rem;
  aspect-ratio: 1;
  right: -10rem;
  bottom: -12rem;
  border-radius: 50%;
  background: var(--mint);
}
.episodes {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.episode {
  min-height: 240px;
  padding: 1.35rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.episode p:not(.episode-date) {
  margin: 0.1rem 0 1.25rem;
}
.episode .text-link {
  margin-top: auto;
}
.load-more {
  position: relative;
  z-index: 1;
  margin: 2rem auto 0;
  display: block;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  padding: 0.75rem 1.3rem;
  font: 700 1rem var(--body);
  cursor: pointer;
}
.about {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
}
.about > * {
  position: relative;
  z-index: 1;
}
.about > p {
  max-width: 43rem;
  margin: 2.5rem 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 500;
}
.about-orb {
  width: 10rem;
  aspect-ratio: 1;
  right: 11%;
  bottom: 2rem;
  left: auto;
  z-index: 0;
}
.hosts {
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}
.host {
  position: relative;
}
.portrait {
  position: relative;
  height: 380px;
  isolation: isolate;
  margin-bottom: 1.5rem;
}
.portrait::before,
.portrait::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.portrait img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  translate: -50%;
  clip-path: none;
  filter: drop-shadow(4px 5px 0 var(--ink));
}
.andrew .portrait img {
  height: 115.385%;
}
.amanda {
  text-align: right;
}
.portrait::before {
  z-index: -1;
  width: min(76%, 300px);
  aspect-ratio: 1;
  left: 50%;
  bottom: 1.25rem;
  translate: -50%;
  border: 5px solid var(--pink);
  border-left-color: transparent;
  border-radius: 50%;
  rotate: -18deg;
}
.portrait::after {
  z-index: 2;
  width: min(38%, 150px);
  aspect-ratio: 2 / 1;
  left: 15%;
  bottom: 1.5rem;
  border: 5px solid var(--orange);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  rotate: -12deg;
}
.amanda .portrait::before {
  border-color: var(--orange);
  border-right-color: transparent;
  rotate: 18deg;
}
.amanda .portrait::after {
  right: 15%;
  left: auto;
  border-color: var(--pink);
  border-bottom: 0;
  rotate: 12deg;
}
.host p {
  max-width: 420px;
  margin: 0;
  font-size: 1.03rem;
}
.amanda p {
  margin-left: auto;
}
.listen {
  background: var(--cyan);
  min-height: 470px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.25rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.listen .circle:first-child {
  width: 30rem;
  aspect-ratio: 1;
  left: -15rem;
  top: -10rem;
}
.listen .circle:nth-child(2) {
  width: 25rem;
  aspect-ratio: 1;
  right: -11rem;
  bottom: -14rem;
}
.listen > div {
  position: relative;
  z-index: 1;
}
.listen h2 {
  margin-bottom: 1rem;
}
.listen > div > p:not(.eyebrow) {
  font-weight: 500;
  margin: 0 0 1.5rem;
}
footer {
  background: var(--ink);
  color: white;
  padding: 3rem clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.86rem;
}
.footer-links .platform-links {
  flex-direction: row;
  margin-top: 0.45rem;
}
footer small {
  grid-column: 1/-1;
  opacity: 0.65;
  font-size: 0.75rem;
}
.footer-logos {
  grid-column: 1/-1;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}
.nz-on-air-logo {
  width: 6rem;
  height: auto;
}
.mpr-logo {
  display: inline-flex;
  align-items: center;
}
.mpr-logo img {
  width: 5rem;
  height: auto;
  filter: invert(1);
}
@media (max-width: 800px) {
  .site-header nav {
    gap: 0.8rem;
    font-size: 0.86rem;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 8.5rem;
    gap: 0.5rem;
  }
  .hero-art {
    min-height: 410px;
    margin: 0 -1.25rem;
  }
  .hero-art img {
    width: 360px;
    height: 410px;
  }
  .hero-art .pink {
    width: 19rem;
    right: 5%;
  }
  .hero-art .orange {
    left: 8%;
  }
  .episode-count {
    right: 4%;
    bottom: 1rem;
  }
  .hero-yellow {
    left: 9%;
    bottom: 13rem;
  }
  .latest-inner {
    grid-template-columns: 130px 1fr;
    gap: 1rem;
  }
  .latest-inner .episode-player {
    grid-column: 1/-1;
  }
  .episodes {
    grid-template-columns: 1fr 1fr;
  }
  .host-grid {
    gap: 2rem;
  }
  .portrait {
    height: 320px;
  }
}
@media (max-width: 560px) {
  .site-header {
    padding-top: 1rem;
  }
  .header-links {
    gap: 0.4rem;
  }
  .platform-links {
    gap: 0.25rem;
  }
  .platform-link {
    width: 1.7rem;
    height: 1.7rem;
  }
  .platform-link img {
    width: 1.05rem;
    height: 1.05rem;
  }
  .mpr-platform-link {
    width: 2.9rem;
  }
  .mpr-platform-link img {
    width: 1.9rem;
    height: auto;
  }
  .site-header nav a:nth-child(-n + 2) {
    display: none;
  }
  .wordmark {
    font-size: 1.25rem;
  }
  .hero h1,
  .hero h1 span {
    -webkit-text-stroke-width: 2px;
    text-shadow: 2px 2px 0 var(--ink);
  }
  .tagline {
    margin-top: 2rem;
  }
  .hero-art {
    min-height: 340px;
  }
  .hero-art img {
    width: 300px;
    height: 340px;
  }
  .episode-count {
    width: 130px;
  }
  .episode-count strong {
    font-size: 3.3rem;
  }
  .latest {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .latest-inner {
    grid-template-columns: 1fr;
  }
  .episode-art {
    width: 145px;
  }
  .latest-inner .episode-player {
    grid-column: auto;
  }
  .episodes {
    grid-template-columns: 1fr;
  }
  .about {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .host-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .portrait {
    height: 330px;
  }
  .amanda {
    text-align: left;
  }
  .amanda p {
    margin-left: 0;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  footer small {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

.hero {
  padding-bottom: 0;
}
.hero-art {
  align-self: end;
  height: 600px;
  min-height: 0;
}
.hero-art .hero-host {
  position: absolute;
  bottom: 0;
  width: auto;
  max-width: none;
  height: auto;
  margin: 0;
  object-fit: contain;
  clip-path: none;
  filter: drop-shadow(5px 6px 0 var(--ink));
}
.hero-amanda {
  right: 0;
  height: 540px !important;
}
.hero-andrew {
  left: 0;
  height: 650px !important;
}
.hero-art .pink {
  left: 2%;
  right: auto;
  top: 2rem;
}
.hero-art .orange {
  right: 6%;
  left: auto;
  bottom: 5rem;
}
.episode-count {
  z-index: 1;
}
@media (max-width: 800px) {
  .hero {
    padding-bottom: 0;
  }
  .hero-art {
    height: 440px;
  }
  .hero-amanda {
    right: 2%;
    height: 400px !important;
  }
  .hero-andrew {
    left: 4%;
    height: 430px !important;
  }
  .hero-art .pink {
    left: 5%;
    right: auto;
  }
  .hero-art .orange {
    right: 8%;
    left: auto;
    bottom: 2rem;
  }
}
@media (max-width: 560px) {
  .hero-art {
    height: 350px;
  }
  .hero-amanda {
    right: -5%;
    height: 315px !important;
  }
  .hero-andrew {
    left: -3%;
    height: 340px !important;
  }
  .hero-art .pink {
    width: 15rem;
    top: 1rem;
  }
  .hero-art .orange {
    width: 9rem;
  }
  .episode-count {
    right: 2%;
    bottom: 0.5rem;
  }
}
