/* --------------------------------------------------------------
   Speakers Hero
-------------------------------------------------------------- */

.page-hero--speakers {
  min-height: 420px;
  height: 48vh;
  background:
    linear-gradient(
      to right,
      rgba(5, 6, 23, 0.85) 0%,
      rgba(5, 6, 23, 0.70) 32%,
      rgba(5, 6, 23, 0.35) 68%,
      rgba(5, 6, 23, 0.08) 100%
    ),
    url("../assets/mic.png") right center/cover no-repeat; /* update path */
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  position: relative;
}

.page-hero--speakers .page-hero__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.page-hero__text {
  max-width: 640px;
}

.page-hero__eyebrow-box {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(5, 6, 23, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    0 0 12px rgba(255, 255, 255, 0.08);
}

/* Typography in hero */
.page-hero--speakers .page-hero__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
  font-weight: 500;
}

.page-hero--speakers .page-hero__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f8fafc;
  margin-top: 0.65rem;
  margin-bottom: 0.35rem;
}

.page-hero--speakers .page-hero__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 580px;
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------
   Speakers Main Content
-------------------------------------------------------------- */

.section--speakers {
  padding: 0;
  background: transparent;
  position: relative;
}

.speakers-content {
  width: 100%;
}

.speakers-row {
  width: 100%;
  background-color: #050617; /* single dark band */
  min-height: 380px; /* increased height */
}

.speakers-row__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 0; /* taller, like program page */
}

/* Centered callout box */
.speakers-callout {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top left,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.96)
  );
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.speakers-callout__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f1f5f9;
}

.speakers-callout__text {
  margin: 0;
  font-size: 0.96rem;
  color: #cbd5e1;
}

/* --------------------------------------------------------------
   Side Decorations (same as other pages)
-------------------------------------------------------------- */

.side-decorated::before,
.side-decorated::after {
  content: "";
  position: absolute;
  top: 0;
  width: 240px;
  height: 100%;
  filter: blur(60px);
  z-index: -1;
}

.side-decorated::before {
  left: -80px;
  background: linear-gradient(
    to bottom,
    rgba(59, 130, 246, 0.18),
    rgba(99, 102, 241, 0.12),
    rgba(147, 51, 234, 0.10)
  );
}

.side-decorated::after {
  right: -80px;
  background: linear-gradient(
    to bottom,
    rgba(147, 51, 234, 0.12),
    rgba(99, 102, 241, 0.10),
    rgba(59, 130, 246, 0.18)
  );
}

@media (max-width: 900px) {
  .side-decorated::before,
  .side-decorated::after {
    display: none;
  }

  .speakers-row__inner {
    padding: 3.2rem 0;
  }
}
