/* ================================================================
   BIOGRAPHY ARTICLE STYLES - Radio 90 Hit
   Bio Worker generated content enhancement
   v1.0.0 — 2026-03-02
   ================================================================ */

/* ── Bio Container ── */
.bio-article {
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--r90-text);
}

/* ── Lead Paragraph (intro cu accent vizual) ── */
.bio-lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--r90-white);
  border-left: 3px solid var(--r90-accent);
  padding: 16px 0 16px 24px;
  margin-bottom: 32px;
  background: linear-gradient(90deg, var(--r90-accent-soft), transparent 70%);
  border-radius: 0 8px 8px 0;
}

/* ── Quick Facts Card ── */
.bio-facts {
  background: var(--r90-gradient-card);
  border: 1px solid var(--r90-border-medium);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0 36px;
  box-shadow: var(--r90-shadow-sm);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px 24px;
}

.bio-facts-title {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--r90-accent);
  margin: 0 0 4px;
  font-weight: 600;
}

.bio-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bio-fact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--r90-text-muted);
  font-weight: 500;
}

.bio-fact-value {
  font-size: 1rem;
  color: var(--r90-white);
  font-weight: 600;
}

/* ── Section Headings ── */
.bio-article h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--r90-border-subtle);
  position: relative;
}

.bio-article h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--r90-gradient-primary);
  border-radius: 2px;
}

.bio-article h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--r90-accent-hover);
}

/* ── Paragraphs ── */
.bio-article p {
  margin-bottom: 18px;
  color: var(--r90-text);
}

/* ── Blockquote (citate memorabile) ── */
.bio-quote {
  position: relative;
  margin: 32px 0;
  padding: 24px 28px 24px 32px;
  background: var(--r90-bg-soft);
  border-left: 3px solid var(--r90-highlight-warm);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--r90-white);
  box-shadow: var(--r90-shadow-xs);
}

.bio-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 3.5rem;
  color: var(--r90-highlight-warm);
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
}

.bio-quote cite,
.bio-quote .bio-quote-source {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--r90-text-muted);
}

/* ── YouTube Embed Responsive ── */
.bio-video {
  position: relative;
  width: 100%;
  max-width: 90%;
  margin: 22px auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--r90-shadow-sm);
  border: 1px solid var(--r90-border-subtle);
}

.bio-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── CTA Box Final ── */
.bio-cta {
  margin: 48px 0 24px;
  padding: 28px 32px;
  background: var(--r90-gradient-card);
  border: 1px solid var(--r90-border-medium);
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--r90-shadow-md);
}

.bio-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--r90-white);
  margin: 0 0 8px;
}

.bio-cta-text {
  font-size: 0.95rem;
  color: var(--r90-text-muted);
  margin: 0 0 20px;
}

.bio-cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--r90-gradient-cta);
  color: var(--r90-white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 106, 213, 0.3);
}

.bio-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 106, 213, 0.45);
  color: var(--r90-white);
  text-decoration: none;
}

/* ── Separator ── */
.bio-sep {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--r90-border-medium), transparent);
  margin: 40px 0;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .bio-lead {
    font-size: 1.05rem;
    padding: 12px 0 12px 16px;
  }
  .bio-facts {
    grid-template-columns: 1fr 1fr;
    padding: 18px 20px;
    gap: 12px;
  }
  .bio-quote {
    padding: 18px 20px 18px 24px;
    font-size: 1rem;
  }
  .bio-cta {
    padding: 22px 20px;
  }
}