/* Estilos específicos para páginas de recursos */
.resource-section {
  display: none;
}
.resource-section.active {
  display: block;
}
.nav-tabs .nav-link {
  color: #495057;
  font-weight: 500;
}
.nav-tabs .nav-link.active {
  color: #e96b56;
  font-weight: 600;
}
.resource-card {
  transition: transform 0.3s ease;
}
.resource-card:hover {
  transform: translateY(-5px);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.audio-container {
  position: relative;
  padding-bottom: 80px; /* Altura fija para el reproductor de audio */
  height: 0;
  overflow: hidden;
  margin: 15px 0;
}
.audio-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
.podcast-planificado {
  background-color: #f8f9fa;
  border-left: 4px solid #ffc107;
}
.subtitulo-recursos {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 400;
  border-left: 3px solid #e96b56;
  padding-left: 15px;
  margin-bottom: 2rem;
}