.mod-scroll_panel {
  max-width: 100%;
  overflow: hidden;
}

.mod-scroll_panel.grey {
  background: #eeeeee;
}

.mod-scroll_panel .row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  column-gap: 46px;
  align-items: start;
  box-sizing: border-box;
  width: calc(100% - 96px);
  max-width: none;
  margin-left: 96px;
  margin-right: 0;
  overflow: hidden;
}

.mod-scroll_panel .podcast-heading h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 28px;
}

.mod-scroll_panel .podcast-controls {
  display: flex;
  gap: 24px;
  font-size: 26px;
  line-height: 1;
  color: #373737;
}

.mod-scroll_panel .podcast-controls button {
  appearance: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.mod-scroll_panel .podcast-list {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.mod-scroll_panel .podcast-card {
  flex: 0 0 clamp(240px, 20vw, 270px);
  min-width: 0;
  scroll-snap-align: start;
}

.mod-scroll_panel .podcast-card.is-press {
  flex: 0 0 clamp(240px, 20vw, 270px);
}

.mod-scroll_panel .podcast-list::-webkit-scrollbar {
  display: none;
}

.mod-scroll_panel .podcast-card h3 {
  font-family: "europa", sans-serif;
  font-size: 15px;
  font-weight: 100;
  line-height: 1.3;
  margin: 16px 0 0;
  letter-spacing: 0;
}

.mod-scroll_panel .podcast-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f3f3f3;
}

.mod-scroll_panel .podcast-media.is-press {
  aspect-ratio: 500 / 535;
}

.mod-scroll_panel .podcast-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mod-scroll_panel .podcast-media:after {
  display: none;
}

.mod-scroll_panel .podcast-media.has-play:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 46px;
  height: 46px;
  background: none;
  border: 2px solid #fff;
  box-sizing: border-box;
  z-index: 3;
}

.mod-scroll_panel .podcast-media:before {
  content: "";
  display: none;
}

.mod-scroll_panel .podcast-media.has-play:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  z-index: 4;
}

@media only screen and (max-width: 64em) {
  .mod-scroll_panel .row {
    display: block;
    width: auto;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .mod-scroll_panel .podcast-heading h2 {
    margin-bottom: 18px;
    text-align: center;
  }

  .mod-scroll_panel .podcast-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }

  .mod-scroll_panel .podcast-list {
    display: flex;
    grid-template-columns: none;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
  }

  .mod-scroll_panel .podcast-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media only screen and (max-width: 40em) {
  .mod-scroll_panel .row {
    display: block;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 0;
  }

  .mod-scroll_panel .podcast-heading h2 {
    font-size: 26px;
    text-align: left;
    margin-bottom: 18px;
  }

  .mod-scroll_panel .podcast-controls {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 22px;
  }

  .mod-scroll_panel .podcast-list {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    max-width: none;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 24px 14px 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .mod-scroll_panel .podcast-card {
    flex: 0 0 150px;
    scroll-snap-align: start;
  }

  .mod-scroll_panel .podcast-list::-webkit-scrollbar {
    display: none;
  }
}
