.podcast-banner {
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--black);
}

.podcast-banner__wrapper {
  margin: auto;
}

@media (min-width: 60rem) {
  .podcast-banner__wrapper {
    display: flex;
    align-items: center;
    padding-bottom: 0;
    background: linear-gradient(90deg, rgb(253, 202, 66) 50%, rgb(0, 0, 0) 50%);
  }
  .podcast-banner__wrapper > * {
    width: 50%;
  }
}
.podcast-banner__title {
  font-family: var(--wp--preset--font-family--pt-serif);
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 60rem) {
  .podcast-banner__title {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }
}
.podcast-banner__image {
  position: relative;
  height: 22rem;
  overflow: hidden;
}

@media (min-width: 60rem) {
  .podcast-banner__image {
    min-height: 26.875rem;
  }
}
.podcast-banner__image img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-banner__content {
  padding: 1.5rem 1rem;
  text-align: center;
}

@media (min-width: 60rem) {
  .podcast-banner__content {
    padding: 2.5rem 3.5rem;
    text-align: left;
  }
}
@media (min-width: 87.5rem) {
  .podcast-banner__content {
    padding: 4.5rem 6rem;
  }
}
.podcast-banner__content button {
  padding: 0;
  background-color: transparent;
  height: 3.4375rem;
  width: 3.4375rem;
  border-radius: 50%;
  border: solid 2px var(--wp--preset--color--white);
  color: var(--wp--preset--color--white);
}

.podcast-banner__player {
  display: flex;
  align-items: center;
  margin-top: 1.875rem;
}

.podcast-banner__player audio {
  display: none;
}

.podcast-banner__player input {
  position: relative;
  -webkit-appearance: none;
  height: 0.25rem;
  background-color: #f5f5f5;
  border-radius: 0.25rem;
  width: 100%;
  margin: 0 1rem;
  cursor: pointer;
}

.podcast-banner__player input:before {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: var(--seek-before-width);
  background-color: var(--wp--preset--color--primary);
}

.podcast-banner__player input::-webkit-slider-thumb {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

.podcast-banner__player input::-webkit-slider-thumb:before {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: var(--seek-before-width);
  background-color: var(--wp--preset--color--primary);
}

.podcast-banner__player input::-moz-range-progress {
  background-color: var(--wp--preset--color--primary);
}

.podcast-banner__player input::-moz-range-thumb {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

.podcast-banner__player button {
  flex-shrink: 0;
}

.podcast-banner__duration {
  flex-shrink: 0;
  font-family: var(--wp--preset--font-family--montserrat);
  font-size: 0.6875rem;
  line-height: 1.5rem;
  font-weight: 500;
}
