.m-podcast-card {
  padding: 2rem 0;
  border-bottom: 1px solid rgb(var(--rgb-primary-border));
}
@media screen and (min-width: 768px) {
  .m-podcast-card {
    padding: 4rem 0;
  }
}
.m-podcast-card a {
  text-decoration: none;
  color: inherit;
}
.m-podcast-card:last-child {
  border-bottom: none;
}
.m-podcast-card__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 3rem;
}
@media screen and (min-width: 768px) {
  .m-podcast-card__inner {
    flex-wrap: nowrap;
  }
}
.m-podcast-card__image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .m-podcast-card__image {
    max-width: 20rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px) {
  .m-podcast-card__image {
    max-width: 30rem;
  }
}
.m-podcast-card__image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  width: 100%;
  max-height: 31rem;
  display: block;
  transition: transform var(--default-transition-easing) var(--default-transition-timing);
}
.m-podcast-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-podcast-card__content {
    width: unset;
    gap: 1.6rem;
  }
}
.m-podcast-card__content h3,
.m-podcast-card__content .h6,
.m-podcast-card__content p,
.m-podcast-card__content span {
  margin-bottom: 0;
  margin-top: 0;
}
.m-podcast-card__info, .m-podcast-card__episode {
  color: var(--color-primary-body);
  font-size: var(--body-fs-sm);
  line-height: var(--body-fs-lh);
  font-weight: 500;
}
.m-podcast-card__divider {
  margin: 0 0.5rem;
}
.m-podcast-card__cta {
  flex-shrink: 0;
  width: 100%;
}
.m-podcast-card__cta .icon path {
  fill: #00EA93;
}
@media screen and (min-width: 768px) {
  .m-podcast-card__cta {
    width: unset;
  }
}
.m-podcast-card:hover .m-podcast-card__image img {
  transform: scale(1.05);
}
