.has-default figure {
  position: relative;
  z-index: 0;
}
.has-default figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 6px solid var(--blue);
}
.no-default figure {
  position: relative;
  z-index: 0;
}
.no-default figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(321deg, rgba(8, 14, 62, 0) 0%, rgba(0, 22, 213, 0.6) 100%);
}
.no-default figure:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 50% 50% url(../../images/bd-podcast.png) no-repeat;
  background-size: contain;
}

.podcast-big {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  margin: 0 0 30px;
  padding: 0 20px 20px calc(100% - 395px);
  background: #fff;
}
.podcast-big > a {
  display: block;
  padding: 25px 0 0;
}
.podcast-big figure {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - 415px);
}
.podcast-big figure:before {
  border-width: 12px;
}
.podcast-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcast-big h2 {
  margin: 0 0 10px;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: bold;
}
.podcast-big__summary {
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--dark-grey);
}
.podcast-signup {
  position: relative;
  z-index: 1;
}
.podcast-big .podcast-signup {
  margin: 12px 0 0;
  flex: 1 1 0;
}
.podcast-signup .more-link {
  margin: 0;
  white-space: nowrap;
  cursor: pointer;
}
.podcast-signup__list {
  display: none;
  position: absolute;
  top: 55px;
  left: 50%;
  padding: 10px 15px;
  border: 1px solid var(--blue);
  text-align: left;
  background: #fff;
  transform: translateX(-50%);
}
.podcast-signup__list li {
  display: block;
  margin: 0 0 5px;
  white-space: nowrap;
}
.podcast-signup__list li:last-child {
  margin: 0;
}
.podcast-signup__list a {
  display: block;
  padding: 5px;
  font-size: 0;
  line-height: 0;
}
.podcast-signup__list span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: 2.2px;
  font-weight: bold;
}
.podcast-signup__list svg {
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 8px;
  margin-left: 8px;
  fill: var(--blue);
}
.podcast-signup__list--open {
  display: block;
}
.more-link--drop svg {
  transform: rotate(90deg);
}

.podcast-lists {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.podcast-list {
  flex: 1 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  margin: 0 10px;
}
.podcast-list__articles {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.small-teaser {
  position: relative;
  flex: 1 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}
.small-teaser > a {
  padding-bottom: 80px;
}
.podcast-list .small-teaser .podcast-signup {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.podcast-teasers {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.podcast-teaser {
  position: relative;
  display: flex;
  flex: 1 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
  min-height: 270px;
  margin: 0 15px 30px;
  background: #fff;
}
.podcast-teaser > a {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 210px;
}
.podcast-teaser figure {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 190px;
  height: 190px;
}
.podcast-teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcast-teaser h4 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: bold;
}
.podcast-teaser__summary {
  flex: 1;
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--dark-grey);
}
.podcast-teaser time {
  margin: 20px 0 0;
}
.podcast-teaser .podcast-signup {
  position: absolute;
  top: 210px;
  left: 33px;
}


@media (hover: hover) {
  .podcast-big a:hover h2 {
    color: var(--blue);
  }
  .podcast-signup__list a:hover {
    color: var(--blue);
  }
  .podcast-teaser:hover a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 8px;
    right: 8px;
    height: 5px;
    background: var(--grey);
  }
  .podcast-teaser:hover h4 {
    color: var(--blue);
  }
}

@media screen and (max-width: 1024px) {
  .podcast-lists {
    display: block;
    margin: 0;
  }
  .podcast-list {
    max-width: none;
    margin: 0 0 40px;
  }
  .podcast-list__articles {
    flex-wrap: nowrap;
    margin: 0;
  }
  .podcast-list .small-teaser {
    flex: 1 0 245px;
    max-width: 245px;
    margin: 0 10px 0 0;
  }
}

@media screen and (max-width: 800px) {
  .podcast-teasers {
    display: block;
    margin: 0;
  }
  .podcast-teaser {
    max-width: none;
    margin: 0 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .podcast-big {
    display: block;
    min-height: 0;
    padding: 15px;
  }
  .podcast-big > a {
    padding: 210px 0 0;
  }
  .podcast-big figure {
    bottom: auto;
    width: 100%;
    height: 210px;
  }
  .podcast-big .podcast-signup {
    margin: 12px 0 30px;
    text-align: center;
  }

  .podcast-teaser {
    min-height: 0;
  }
  .podcast-teaser > a {
    padding: 12px 12px 64px 142px;
  }
  .podcast-teaser figure {
    top: 12px;
    width: 130px;
    height: 80px;
  }
  .podcast-teaser h4 {
    margin: 0;
  }
  .podcast-teaser__summary {
    display: none;
  }
  .podcast-teaser .podcast-signup {
    top: auto;
    left: 142px;
    bottom: 12px;
  }
}

@media screen and (max-width: 450px) {
  .small-teaser > a {
    min-height: 0;
    padding: 19px 9px 80px;
  }
  .small-teaser figure {
    top: auto;
    left: auto;
    width: auto;
    margin: -20px 0 10px;
  }
}