:root {
  --ink-colour: rgb(255,255,255);
  --ink-knockback-colour: rgb(153,153,153);
  --page-colour: rgb(25,25,25);
  --page-knockback-colour: rgb(37,51,58);
  --link-colour: rgb(33,153,234);
  --link-decoration-colour: rgb(234,33,90);
  --copy-fontstack: "Adelle Sans", "Droid Sans", -apple-system, "Helvetica Neue", "Segoe UI", "Arial", sans-serif;
  --heading-fontstack: "Gilroy", "Avenir", "Century Gothic", -apple-system, "Helvetica Neue", "Segoe UI", "Roboto", sans-serif;
}

@font-face {
  font-family: 'Adelle Sans';
  src: url("/fonts/adellesans-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Gilroy';
  src: url("/fonts/gilroy-black-webfont.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Gilroy';
  src: url("/fonts/gilroy-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}
html {
  font-size: clamp(80%, 75% + 0.6666vw, 200%);
}
body {
  font-family: var(--copy-fontstack);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-colour);
  background-color: var(--page-colour);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body,
body > header,
body > main,
body > footer {
  margin: 0;
  padding: 0;
}
body > main {
  flex-grow: 1;
}
a {
  color: var(--link-colour);
  text-decoration: none;
  border-bottom: 0.2rem solid var(--link-decoration-colour);
}
a:hover,
a:focus {
  color: var(--link-decoration-colour);
}
p {
  margin: 0;
  padding-bottom: 1em;
}
h1 {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.1rem;
}
h2 {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.1rem;
}
h3 {
  font-size: 3rem;
  line-height: 1.25;
}
h4 {
  font-size: 2rem;
  line-height: 1.3333;
}
audio {
  display: block;
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
}
small {
  font-size: 0.8em;
}

.heading {
  font-family: var(--heading-fontstack);
  font-weight: 800;
  margin: 0;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.heading a {
  color: inherit;
  border-bottom: none;
}
.heading a:hover,
.heading a:focus {
  color: var(--link-decoration-colour);
}
.subheading {
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 2em;
  padding-bottom: 0;
  text-transform: uppercase;
  font-family: var(--heading-fontstack);
  font-weight: 700;
  letter-spacing: 0.075em;
  color: var(--ink-knockback-colour);
}

.content {
  margin: 0 auto;
  padding: 0 5vw;
  max-width: 45em;
}

.masthead {
  color: var(--page-colour);
  background-color: var(--ink-colour);
}
@media all and (min-width: 30em) {
  .masthead {
    background-image: url('/img/people/jeremy-keith.jpg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .masthead.richard {
    background-image: url('/img/people/richard-rutter.jpg');
  }
  .masthead.katie {
    background-image: url('/img/people/katie-wishlade.jpg');
  }
  .masthead.charlotte {
    background-image: url('/img/people/charlotte-jackson.jpg');
  }
  .masthead.chris {
    background-image: url('/img/people/chris-how.jpg');
  }
  .masthead.jon {
    background-image: url('/img/people/jon-aizlewood.jpg');
  }
  .masthead.james {
    background-image: url('/img/people/james-gilyead.jpg');
  }
  .masthead.helen {
    background-image: url('/img/people/helen-davies.jpg');
  }
  .masthead.trys {
    background-image: url('/img/people/trys-mudford.jpg');
  }
  .masthead.andyb {
    background-image: url('/img/people/andy-budd.jpg');
  }
  .masthead.andyt {
    background-image: url('/img/people/andy-thornton.jpg');
  }
  .masthead.maite {
    background-image: url('/img/people/maite-otondo.jpg');
  }
  .masthead.jerlyn {
    background-image: url('/img/people/jerlyn-jareunpoon-phillips.jpg');
  }
  .masthead.temi {
    background-image: url('/img/people/temi-adeniyi.jpg');
  }
  .masthead.farai {
    background-image: url('/img/people/farai-madzima.jpg');
  }
  .masthead.leonie {
    background-image: url('/img/people/leonie-watson.jpg');
  }
  .masthead.lola {
    background-image: url('/img/people/lola-oyelayo-pearson.jpg');
  }
  .masthead.elaine {
    background-image: url('/img/people/elaine-dela-cruz.jpg');
  }
  .masthead.benjamin {
    background-image: url('/img/people/benjamin-parry.jpg');
  }
  .masthead.adekunle {
    background-image: url('/img/people/adekunle-oduye.jpg');
  }
  .masthead.steph {
    background-image: url('/img/people/steph-troeth.jpg');
  }
  .masthead.rebecca {
    background-image: url('/img/people/rebecca-groves.jpg');
  }
  .masthead.maja {
    background-image: url('/img/people/maja-raunbak.jpg');
  }
  .masthead.krystal {
    background-image: url('/img/people/krystal-higgins.jpg');
  }
}
.masthead .logo {
  display: inline-block;
  margin-top: 1em;
}
.masthead .heading {
  text-shadow: 0 0 0.1em var(--ink-colour);
}
.masthead a {
  border-bottom: none;
}
.listen {
  display: inline-block;
  color: var(--ink-colour);
  background-color: var(--page-colour);
  border-radius: 0.25em;
  padding-left: 0.75em;
  padding-right: 1.75em;
  padding-top: 0.4em;
  padding-bottom: 0.3em;
  background-position: right 0.25em center;
  background-repeat: no-repeat;
  background-size: 1.25em;
  text-transform: uppercase;
  font-family: var(--heading-fontstack);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
.listen.apple {
  background-image: url('/img/icons/podcast.svg');
}
.listen.apple:hover,
.listen.apple:focus {
  color: #a479e2;
}
.listen.spotify {
  background-image: url('/img/icons/spotify.svg');
}
.listen.spotify:hover,
.listen.spotify:focus {
  color: #9bd44e;
}
.listen.rss {
  background-image: url('/img/icons/rss.svg');
}
.listen.rss:hover,
.listen.rss:focus {
  color: #ee802f;
}

.h-entry {
  padding-bottom: 3em;
}
.h-entry .heading {
  padding-bottom: 0;
}

.transcript {
  padding-top: 1em;
  padding-bottom: 1em;
}
.transcript dt,
.transcript dd {
  margin: 0;
  padding: 0;
}
.transcript dt {
  color: var(--ink-knockback-colour);
  font-size: 0.75rem;
  line-height: 2.25;
  text-transform: uppercase;
  font-family: var(--heading-fontstack);
  font-weight: 700;
  letter-spacing: 0.1em;
  word-break: break-all;
}
@media all and (min-width: 40em) {
  .transcript dt {
    width: 10em;
    float: left;
    margin-right: 0.5em;
    margin-left: -11em;
    text-align: right;
  }
  @media all and ( max-width: 76em) {
    .transcript {
      margin-left: 8.5em;
    }
  }
}

.linklist {
  list-style: none;
  margin: 0;
  padding: 0 0 1em;
}
.linklist li {
  display: inline-block;
  margin: 0;
  padding: 0 1.5em 0.5em 0;
}

.colophon {
  margin-top: 4em;
  padding-top: 2em;
  padding-bottom: 1em;
  background-color: var(--page-knockback-colour);
}
.colophon .content > * {
  font-size: 0.8em;
}
.colophon .heading {
  font-size: 1.5rem;
  font-family: var(--heading-fontstack);
  font-weight: 700;
  letter-spacing: normal;
}
.colophon a {
  border-bottom: none;
  text-decoration: underline;
}
.colophon a:link,
.colophon a:visited {
  color: var(--ink-colour);
}
.colophon a:hover,
.colophon a:focus {
  color: var(--link-decoration-colour);
}
.colophon .linklist a {
  text-decoration: none;
}
.syndication {
  font-family: var(--heading-fontstack);
  font-weight: 700;
}
.social {
  padding-top: 1em;
}
.social-link:hover,
.social-link:focus {
  filter: invert(0.5) sepia(1) saturate(200%) hue-rotate(107deg) brightness(1.25);
}
.social-link img {
  height: 1em;
}
.copyright {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--knockback-colour);
}