/*
  Desktop podcast page content.
  Shared page chrome stays in site_global.css and collections.css.
*/

@font-face {
  font-family: "Podcast Desktop Gotham Light";
  src:
    url("../fonts/Gotham-Light.woff2") format("woff2"),
    url("../fonts/Gotham-Light.woff") format("woff"),
    url("../fonts/Gotham-Light.ttf") format("truetype"),
    url("../fonts/Gotham-Light.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Podcast Desktop Gotham Medium";
  src:
    url("../fonts/Gotham-Medium.woff2") format("woff2"),
    url("../fonts/Gotham-Medium.woff") format("woff"),
    url("../fonts/Gotham-Medium.ttf") format("truetype"),
    url("../fonts/Gotham-Medium.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

:root {
  --podcast-grid-top-gap: 89px;
  --podcast-cell-max-width: 354px;
  --podcast-column-gap: 48px;
  --podcast-row-gap: 80px;
  --podcast-line-color: #4d4d4d;
  --podcast-line-to-heading-gap: 25px;
  --podcast-heading-to-text-gap: 22px;
  --podcast-heading-color: #c9a875;
  --podcast-text-color: #b1b1b1;
  --podcast-link-color: var(--site-clickable-text);
  --podcast-desktop-heading-font: "Podcast Desktop Gotham Light", var(--site-font-body);
  --podcast-desktop-text-font: "Podcast Desktop Gotham Light", var(--site-font-body);
  --podcast-desktop-link-font: "Podcast Desktop Gotham Medium", var(--site-font-body);
}

.podcast-section {
  margin-top: var(--podcast-grid-top-gap);
}

.podcast-grid {
  --podcast-column-count: 2;
  position: relative;
  contain: layout;
  display: grid;
  grid-template-columns: repeat(var(--podcast-column-count), minmax(0, var(--podcast-cell-max-width)));
  column-gap: var(--podcast-column-gap);
  row-gap: var(--podcast-row-gap);
  justify-content: start;
  width: 100%;
}

.podcast-cell {
  width: 100%;
  max-width: var(--podcast-cell-max-width);
  min-width: 0;
  margin: 0;
}

.podcast-cell__line {
  width: 100%;
  height: 1px;
  background: var(--podcast-line-color);
}

.podcast-cell__heading {
  margin: var(--podcast-line-to-heading-gap) 0 0;
  color: var(--podcast-heading-color);
  font-family: var(--podcast-desktop-heading-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 17px;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.podcast-cell__text {
  margin: var(--podcast-heading-to-text-gap) 0 0;
  color: var(--podcast-text-color);
  font-family: var(--podcast-desktop-text-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
}

.podcast-cell__link {
  color: var(--podcast-link-color);
  font-family: var(--podcast-desktop-link-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
}

@media (min-width: 1280px) {
  .podcast-grid {
    --podcast-column-count: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .podcast-cell {
    transition: none;
  }
}
