/* ========================================
   ДоброКаст — About page extras
   ======================================== */

/* Section spacing */
.dc-about-section {
  margin-bottom: 32px;
}
.dc-about-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.dc-about-section p {
  font-size: 0.92rem; line-height: 1.65;
  color: var(--text);
  margin-bottom: 12px;
}

/* Episode types — vertical timeline */
.dc-types {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
}
.dc-type {
  display: flex; gap: 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.dc-type:hover { transform: translateX(2px); box-shadow: var(--shadow-sm); }
.dc-type-num {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
}
.dc-type-body h3 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--accent); margin-bottom: 3px;
}
.dc-type-body p {
  font-size: 0.82rem; color: var(--subtext);
  line-height: 1.5; margin: 0;
}

/* Lang badges row */
.dc-lang-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px;
}
.dc-lang-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text);
}
.dc-lang-badge.muted {
  background: var(--brick-light); color: var(--brick);
  border-color: var(--brick);
  opacity: 0.85;
}

/* Guest box — questions list */
.dc-guest-questions {
  list-style: none; counter-reset: q;
  margin: 14px 0 18px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.dc-guest-questions li {
  position: relative;
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 12px 14px 12px 44px;
  font-size: 0.88rem; line-height: 1.5;
  color: var(--text);
}
.dc-guest-questions li::before {
  counter-increment: q;
  content: counter(q);
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: var(--accent); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}

/* Email CTA — same look as home dc-cta-btn but bigger */
.dc-guest-cta {
  display: inline-block;
  background: var(--gold); color: white;
  padding: 12px 28px; border-radius: 24px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
  margin-top: 6px;
}
.dc-guest-cta:hover { transform: scale(1.04); background: var(--accent); }
.dc-guest-note {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem; color: var(--subtext);
  font-style: italic;
}
