/* ===== PODCAST SECTION STYLES ===== */

/* Hero header */
.podcast-hero {
  text-align: center;
  padding: 80px 24px 48px;
  background: linear-gradient(180deg, var(--unach-azul-profundo) 0%, var(--unach-azul) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.podcast-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--unach-dorado);
}
.podcast-hero h1 {
  font-family: var(--font-emphasis);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.podcast-hero .podcast-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 400;
}
.podcast-hero .podcast-badge {
  display: inline-block;
  background: var(--unach-dorado);
  color: var(--unach-azul-profundo);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Container */
.podcast-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Grid */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.podcast-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.podcast-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Card title above video */
.podcast-card .podcast-card-title {
  padding: 14px 16px 0;
  margin-bottom: 0;
  font-family: var(--font-emphasis);
  font-size: 1rem;
  font-weight: 700;
  color: var(--unach-azul);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
.podcast-card .podcast-card-title a {
  color: inherit;
  text-decoration: none;
}
.podcast-card .podcast-card-title a:hover {
  color: var(--unach-azul-profundo);
  text-decoration: underline;
}

/* Video wrapper (16:9 aspect ratio) */
.podcast-card .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}
.podcast-card .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Card body */
.podcast-card-body {
  padding: 12px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.podcast-card-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.podcast-card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-hairline);
}
.podcast-season-badge {
  display: inline-block;
  background: rgba(25,45,99,0.08);
  color: var(--unach-azul);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}
.podcast-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* Pagination */
.podcast-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  padding: 24px 0;
}
.podcast-pagination a,
.podcast-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--unach-azul);
  background: var(--bg-white);
  border: 2px solid var(--border-hairline);
  transition: all 0.2s;
}
.podcast-pagination a:hover {
  border-color: var(--unach-azul);
  background: rgba(25,45,99,0.05);
}
.podcast-pagination .active {
  background: var(--unach-azul);
  color: #fff;
  border-color: var(--unach-azul);
}
.podcast-pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Empty state */
.podcast-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.podcast-empty i {
  font-size: 4rem;
  opacity: 0.2;
  margin-bottom: 20px;
  display: block;
}
.podcast-empty h3 {
  font-family: var(--font-emphasis);
  font-size: 1.5rem;
  color: var(--unach-azul);
  margin-bottom: 8px;
}

/* ===== INDIVIDUAL EPISODE PAGE ===== */
.podcast-single {
  max-width: 900px;
  margin: 120px auto 64px;
  padding: 0 24px;
}
.podcast-single .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.podcast-single .breadcrumbs a {
  color: var(--unach-azul);
  text-decoration: none;
}
.podcast-single .breadcrumbs a:hover {
  text-decoration: underline;
}
.podcast-single .breadcrumbs .separator {
  color: var(--text-muted);
  opacity: 0.5;
}
.podcast-single .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}
.podcast-single .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.podcast-single h1 {
  font-family: var(--font-emphasis);
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--unach-azul-profundo);
  margin-bottom: 16px;
}
.podcast-single .episode-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-hairline);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.podcast-single .episode-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 40px;
}

/* Share section */
.podcast-share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--unach-azul);
  text-align: center;
}
.podcast-share .share-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--unach-azul);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: block;
}

/* Responsive */
@media (max-width: 1200px) {
  .podcast-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .podcast-grid { grid-template-columns: repeat(2, 1fr); }
  .podcast-hero h1 { font-size: 2.2rem; }
  .podcast-single h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .podcast-grid { grid-template-columns: 1fr; }
  .podcast-hero { padding: 96px 16px 36px; }
  .podcast-hero h1 { font-size: 1.8rem; }
  .podcast-container { padding: 32px 16px; }
  .podcast-single { margin-top: 100px; }
  .podcast-single h1 { font-size: 1.6rem; }
}
