/* ================================================
   SESIÓN 06 (y todas las sesiones EN VIVO)
   Componentes para sesiones con invitado/a Zoom
================================================ */

/* ── Live session header ─────────────────────── */

.live-session-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-bottom: 1.75rem;
  margin-bottom: 0.5rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fef2f2;
  color: #dc2626;
  border: 1.5px solid #fecaca;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.85rem;
  width: fit-content;
  text-transform: uppercase;
}

.live-badge::before {
  content: "●";
  font-size: 0.6rem;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.live-header-copy {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  max-width: 60ch;
}

/* ── Guest bio card ──────────────────────────── */

.guest-card {
  display: flex;
  gap: 1.5rem;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-left: 4px solid #6495ED;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 0.5rem 0 2rem;
}

.guest-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #bfdbfe;
  /* fallback for initials div */
  background: linear-gradient(135deg, #2780e3, #1a365d);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.guest-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.guest-title {
  font-size: 0.84rem;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}

.guest-institution {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

.guest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.1rem;
}

.guest-tag {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.6rem;
}

.guest-bio {
  color: #475569;
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 0.25rem 0 0;
}

/* ── Resources section ───────────────────────── */

.recursos-placeholder {
  color: #64748b;
  font-size: 0.88rem;
  font-style: italic;
  border-left: 3px solid #e2e8f0;
  padding-left: 0.9rem;
  margin: 0.5rem 0;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 580px) {
  .guest-card {
    flex-direction: column;
    gap: 1rem;
  }

  .guest-avatar {
    width: 52px;
    height: 52px;
    font-size: 1rem;
  }
}
