/* =====================================================================
   TELA: PROGRAMAÇÃO / palestrantes + cronograma
   (usa também .timeline e .info-content de css/base.css)
   ===================================================================== */

.speaker-list {
  display: grid;
  gap: 12px;
}

.speaker {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: start;
  min-height: 96px;
  gap: 14px;
  border: 1px solid #e7e8ea;
  border-radius: 8px;
  background: #fbfbfb;
  padding: 10px;
}

.speaker strong,
.speaker span,
.speaker p {
  display: block;
}

.speaker img {
  width: 78px;
  height: 92px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  background: #d8dbe0;
}

.speaker strong {
  color: var(--navy);
  font-size: 0.94rem;
  line-height: 1.2;
}

.speaker span {
  color: #4f5763;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 3px;
}

.speaker p {
  margin: 8px 0 0;
  color: #2d3747;
  font-size: 0.76rem;
  line-height: 1.45;
}

.avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 6px;
  background-color: #d8dbe0;
  background-image:
    radial-gradient(circle at 50% 27%, #f2c9aa 0 15%, transparent 16%),
    linear-gradient(90deg, transparent 0 33%, #17243e 34% 66%, transparent 67%),
    linear-gradient(150deg, #dadde4 0 50%, #f7f1e8 51%);
}

.avatar-2 {
  background-image:
    radial-gradient(circle at 50% 26%, #c99267 0 15%, transparent 16%),
    linear-gradient(90deg, transparent 0 30%, #10182a 31% 69%, transparent 70%),
    linear-gradient(150deg, #d6dde6 0 50%, #f6f2ea 51%);
}

.avatar-3 {
  background-image:
    radial-gradient(circle at 50% 27%, #d7a075 0 15%, transparent 16%),
    linear-gradient(90deg, transparent 0 24%, #202329 25% 75%, transparent 76%),
    linear-gradient(150deg, #ead8cc 0 50%, #f4eee8 51%);
}

/* ---- Cronograma (dias / blocos) ---- */
.schedule-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px 20px;
}

.schedule-header,
.schedule-day {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.schedule-header {
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 16px;
}

.schedule-header h3,
.schedule-header p,
.schedule-day h3,
.schedule-block h4 {
  margin: 0;
}

.schedule-header h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.18;
}

.schedule-header p {
  margin-top: 8px;
  color: #2d3747;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.schedule-day {
  display: grid;
  gap: 14px;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.025);
}

.schedule-day h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.schedule-block {
  display: grid;
  gap: 12px;
}

.schedule-block + .schedule-block {
  border-top: 1px solid #e6e8eb;
  padding-top: 14px;
}

.schedule-block h4 {
  color: #2d3747;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

@media (min-width: 781px) {
  .speaker-list {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
  }

  .schedule-content {
    padding-top: 42px;
  }
}
