/* ============================================
   PRÉDICAS PAGE — Human Buenos Aires
   ============================================ */

/* ---- FEATURED VIDEO ---- */
.featured-video {
  margin-bottom: var(--space-16);
}

.featured-video__player {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  aspect-ratio: 16 / 9;
  position: relative;
}

.featured-video__player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Loading state */
.featured-video__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background: var(--bg-elevated);
}

.featured-video__loading p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Error state */
.featured-video__error {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-8);
}

.featured-video__error p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.featured-video__meta {
  padding: var(--space-6) 0;
}

.featured-video__title {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.featured-video__date {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---- CHANNEL LINK ---- */
.channel-cta {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-10) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  background: var(--bg-elevated);
  transition: border-color var(--t);
}

.channel-cta:hover {
  border-color: var(--border-hover);
}

.channel-cta__text p:first-child {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.channel-cta__text h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .channel-cta {
    flex-direction: column;
    text-align: center;
  }
}
