.podcast-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.podcast-item {
  flex: 1 1 auto;
  max-width: 180px;
  min-width: 80px;
  text-align: center;
}


.podcast-links img {
  max-height: 60px !important;
  width: auto !important;
}
@media (min-width: 600px) {
  .podcast-links {
    flex-wrap: nowrap;
  }
}