/* main.css */
.podcasts-container {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 350px));
  gap: 3.5rem;
  max-width: 1500px;
  margin: 0 auto;
  justify-content: center;
  justify-items: center;
}
.podcast-card {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-width: 350px;
}
.format-selector {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.format-btn {
  padding: 8px 16px;
  cursor: pointer;
  border: none;
  background: #f0f0f0;
  border-radius: 4px;
  font-weight: bold;
  color: #1d2a42;
  transition: all 0.3s ease;
}
.format-btn:hover {
  background: #1d2a42;
  color: white;
}
.format-btn.active {
  background: #1d2a42;
  color: white;
}
.media-container {
  display: none;
}
.media-container.active {
  display: block;
}
.file-info {
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
  text-align: center;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  gap: 1rem;
}
.pagination a {
  text-decoration: none;
  background: #f0f0f0;
  color: #1d2a42;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.pagination span {
  font-weight: bold;
  color: white;
}