.podcast-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.podcast-card {
  background-color: #eeeeee;
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.podcast-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 10px;
}

.podcast-card h4 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.podcast-card p {
  margin: 5px 0;
  font-size: 14px;
}

.podcast-card audio,
.podcast-card iframe {
  width: 100%;
  margin-top: 10px;
  border-radius: 4px;
}
