.podcast-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 20px;
}

.podcast-grid-item {
  min-width: 270px;
}

@media (min-width: 480px) and (max-width: 719px) {
  .podcast-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) and (max-width: 1023px) {
  .podcast-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .podcast-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.podcast-card {
  display: grid;
  grid-template-rows: 1fr 0.4fr 40px;
  grid-gap: 20px 0;
  height: 100%;
}

.podcast-card .podcast-cover img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.podcast-card .magazine-cover img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.41;
  object-fit: cover;
}

.podcast-card .podcast-body {
  padding: 0 20px;
}

.podcast-card .podcast-body h2 {
  margin: 0;
}

.podcast-card .podcast-cta {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 20px;
  padding: 0 20px;
  align-self: center;
}

