.podcast-carrusel {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 15px 0;
  scrollbar-width: none;
}
.podcast-carrusel::-webkit-scrollbar {
  display: none;
}

.podcast-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #1e1e1e;
  color: white;
  border-radius: 10px;
  min-width: 350px;
  max-width: 400px;
  height: 100px; /* 🔥 Altura fija total */
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.podcast-img {
  width: 40%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.podcast-info {
  width: 60%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.podcast-cat {
  font-size: 0.8rem;
  color: #bbbbbb;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-info h3 {
  margin: 2px 0;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.2em;
  max-height: 2.4em; /* 🔒 Máximo 2 líneas */
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-info p {
  margin: 0;
  font-size: 0.75rem;
  color: #cccccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-card-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: transform 0.2s ease;
}

.podcast-card-link:hover {
  transform: scale(1.02);
}

.podcast-img {
  width: 40%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* 🔘 Ícono de play */
.play-icon {
  position: absolute;
  font-size: 24px;
  color: white;
  z-index: 2;
  opacity: 0.9;
}

/* 🌫️ Sombra sobre la imagen */
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  z-index: 1;
}