/* ============================================================
   schedule.css — PyHo 2026 · Schedule page only
   Loads after base.css. Zero duplication of base tokens/classes.
   ============================================================ */


/* ----------------------------------------------------------
   In-page subnav
   ---------------------------------------------------------- */
.sch-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--forest);
  border-bottom: 1px solid rgba(255, 212, 59, 0.18);
}

.sch-subnav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.sch-subnav__inner::-webkit-scrollbar { display: none; }

.sch-subnav__link {
  display: inline-block;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.55);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.sch-subnav__link:hover { color: var(--cream); }
.sch-subnav__link.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}


/* ----------------------------------------------------------
   Page sections
   ---------------------------------------------------------- */
.sch-section {
  padding: 5rem var(--sp-5);
}
.sch-section--sage  { background: var(--sage); }
.sch-section--sand  { background: var(--sand); }
.sch-section--forest { background: var(--forest); }

.sch-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.sch-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.sch-section__heading--light { color: var(--white); }

.sch-section__sub {
  font-size: 1.0625rem;
  color: #555;
  max-width: 620px;
  line-height: 1.65;
  margin: 0 0 3rem;
}


/* ----------------------------------------------------------
   Overview — 3-day at-a-glance cards
   ---------------------------------------------------------- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.overview-day {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.overview-day__header {
  padding: 1.375rem 1.5rem 1.125rem;
}
.overview-day--oct22 .overview-day__header { background: #4338CA; }
.overview-day--oct23 .overview-day__header { background: var(--forest); }
.overview-day--oct24 .overview-day__header { background: #0F766E; }

.overview-day__date {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.3rem;
}

.overview-day__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
}

.overview-day__tag {
  display: inline-block;
  margin-top: 0.625rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.2em 0.6em;
}

.overview-day__items {
  padding: 1.125rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.overview-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #3d3d3d;
  line-height: 1.4;
}

.overview-item__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.32em;
}
.overview-day--oct22 .overview-item__dot { background: #818cf8; }
.overview-day--oct23 .overview-item__dot { background: var(--yellow); }
.overview-day--oct24 .overview-item__dot { background: #0F766E; }

.overview-day__anchor {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.overview-day--oct22 .overview-day__anchor { color: #4338CA; }
.overview-day--oct23 .overview-day__anchor { color: var(--forest); }
.overview-day--oct24 .overview-day__anchor { color: #0F766E; }
.overview-day__anchor:hover { background: var(--sage); }


/* ----------------------------------------------------------
   Full timeline (Oct 23 kick-off + Oct 24 conference)
   ---------------------------------------------------------- */
.timeline-day {
  margin-bottom: 3.5rem;
}
.timeline-day:last-child { margin-bottom: 0; }

.timeline-day__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border);
}

.timeline-day__badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 0.8em;
  border-radius: 4px;
  white-space: nowrap;
}
.timeline-day__badge--23 {
  background: rgba(26,58,42,0.1);
  color: var(--forest);
  border: 1px solid rgba(26,58,42,0.18);
}
.timeline-day__badge--24 {
  background: rgba(15,118,110,0.1);
  color: #0F766E;
  border: 1px solid rgba(15,118,110,0.2);
}

.timeline-day__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  position: relative;
}

.timeline-row::before {
  content: '';
  position: absolute;
  left: 89px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-entry {
  display: contents;
}

.timeline-entry__time {
  padding: 1rem 1.25rem 1rem 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-align: right;
  position: relative;
  line-height: 1.3;
}

.timeline-entry__time::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 1.15rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-strong);
  border: 2px solid var(--cream);
  z-index: 1;
}

.timeline-entry--highlight .timeline-entry__time::after {
  background: var(--yellow);
}
.timeline-entry--keynote .timeline-entry__time::after {
  background: #0F766E;
}

.timeline-entry__body {
  padding: 0.875rem 0 0.875rem 1.5rem;
  border-bottom: 1px dashed rgba(26,58,42,0.08);
}
.timeline-entry:last-of-type .timeline-entry__body {
  border-bottom: none;
}

.timeline-entry__label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.25rem;
}

.timeline-entry__desc {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

.timeline-entry__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.t-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.22em 0.6em;
  border-radius: 3px;
}
.t-tag--dg   { background: rgba(109,40,217,0.1);  color: #5b21b6; }
.t-tag--bl   { background: rgba(255,212,59,0.15); color: #7a5f00; }
.t-tag--conf { background: rgba(15,118,110,0.1);  color: #0F766E; }
.t-tag--all  { background: rgba(26,58,42,0.1);    color: var(--forest); }
.t-tag--soc  { background: rgba(190,24,93,0.08);  color: #9d174d; }


/* ----------------------------------------------------------
   Django Girls section
   ---------------------------------------------------------- */
.dg-header-band {
  background: linear-gradient(135deg, #6D28D9 0%, #4C1D95 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.dg-header-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.dg-header-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.dg-header-band__eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,233,254,0.6);
  margin-bottom: 0.5rem;
}

.dg-header-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.625rem;
}

.dg-header-band__desc {
  font-size: 0.9375rem;
  color: rgba(237,233,254,0.65);
  margin: 0;
  line-height: 1.6;
  max-width: 520px;
}

.dg-header-band__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.dg-meta-pill {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.dg-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dg-day {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dg-day__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.dg-day--1 .dg-day__header { background: rgba(109,40,217,0.05); }
.dg-day--2 .dg-day__header { background: rgba(109,40,217,0.08); }

.dg-day__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #6D28D9;
  opacity: 0.3;
  line-height: 1;
}

.dg-day__info h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.2rem;
}

.dg-day__info span {
  font-size: 0.8rem;
  color: var(--muted);
}

.dg-session {
  display: grid;
  grid-template-columns: 72px 1fr;
  border-bottom: 1px solid var(--border);
}
.dg-session:last-child { border-bottom: none; }

.dg-session__time {
  padding: 0.875rem 0.75rem 0.875rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--stone);
  background: rgba(109,40,217,0.03);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  line-height: 1.3;
}

.dg-session__content {
  padding: 0.875rem 1.25rem;
}

.dg-session__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.2rem;
}

.dg-session__note {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.dg-resources {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(109,40,217,0.06);
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dg-resources p {
  font-size: 0.875rem;
  color: #3d3d3d;
  margin: 0;
  flex: 1;
  line-height: 1.55;
}

.dg-resources a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #6D28D9;
  text-decoration: none;
  border-bottom: 2px solid rgba(109,40,217,0.3);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.dg-resources a:hover { border-color: #6D28D9; }


/* ----------------------------------------------------------
   Builders Lab schedule section
   ---------------------------------------------------------- */
.bl-sched-band {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.bl-sched-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.bl-sched-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.bl-sched-band__eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,212,59,0.6);
  margin-bottom: 0.5rem;
}

.bl-sched-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.625rem;
}

.bl-sched-band__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.58);
  margin: 0;
  line-height: 1.6;
  max-width: 520px;
}

.bl-reg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--yellow);
  padding: 0.75rem 1.375rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.12s;
  white-space: nowrap;
  line-height: 1;
}
.bl-reg-btn:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
}

.bl-partners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.bl-partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bl-partner-card__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}

.bl-partner-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.3rem;
}

.bl-partner-card__desc {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

.bl-timetable {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bl-timetable__header {
  background: var(--forest);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-timetable__header h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bl-timetable__header span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.bl-slot {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px solid var(--border);
}
.bl-slot:last-child { border-bottom: none; }
.bl-slot--featured { background: rgba(255,212,59,0.04); }

.bl-slot__time {
  padding: 0.875rem 1rem 0.875rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--stone);
  background: var(--sage);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  line-height: 1.3;
}

.bl-slot__content {
  padding: 0.875rem 1.375rem;
}

.bl-slot__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.2rem;
}

.bl-slot__note {
  font-size: 0.8125rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.bl-slot__partner {
  display: inline-block;
  margin-top: 0.375rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--yellow);
  padding: 0.18em 0.55em;
  border-radius: 3px;
  opacity: 0.85;
}


/* ----------------------------------------------------------
   Conference talks section
   ---------------------------------------------------------- */
.talks-band {
  background: linear-gradient(135deg, #0F766E 0%, #134e4a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.talks-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.talks-band__inner {
  position: relative;
  z-index: 1;
}

.talks-band__eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(204,251,241,0.55);
  margin-bottom: 0.5rem;
}

.talks-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.talks-band__desc {
  font-size: 0.9375rem;
  color: rgba(204,251,241,0.6);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.talk-block {
  margin-bottom: 2.75rem;
}
.talk-block:last-child { margin-bottom: 0; }

.talk-block__label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.talk-type-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 0.75em;
  border-radius: 4px;
  white-space: nowrap;
}
.talk-type-badge--keynote   { background: rgba(15,118,110,0.12); color: #0F766E; border: 1px solid rgba(15,118,110,0.22); }
.talk-type-badge--talk      { background: rgba(26,58,42,0.1);    color: var(--forest); border: 1px solid rgba(26,58,42,0.18); }
.talk-type-badge--panel     { background: rgba(180,83,9,0.1);    color: #92400e; border: 1px solid rgba(180,83,9,0.2); }
.talk-type-badge--lightning { background: rgba(255,212,59,0.15); color: #7a5f00; border: 1px solid rgba(255,212,59,0.3); }
.talk-type-badge--showcase  { background: rgba(109,40,217,0.1);  color: #5b21b6; border: 1px solid rgba(109,40,217,0.18); }
.talk-type-badge--closing   { background: rgba(15,118,110,0.1);  color: #0F766E; border: 1px solid rgba(15,118,110,0.2); }

.talk-block__rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.talk-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.talk-cards--single   { grid-template-columns: 1fr; }
.talk-cards--three    { grid-template-columns: repeat(3, 1fr); }

.talk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.talk-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.talk-card--keynote {
  border-color: rgba(15,118,110,0.2);
  background: rgba(15,118,110,0.03);
}
.talk-card--tba {
  border-style: dashed;
  background: transparent;
}

.talk-card__time {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.talk-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
  line-height: 1.3;
}
.talk-card--keynote .talk-card__title { font-size: 1.0625rem; }

.talk-card__speaker {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.talk-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sage);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--stone);
  flex-shrink: 0;
}
.talk-card--keynote .talk-card__avatar {
  background: rgba(15,118,110,0.1);
  border-color: rgba(15,118,110,0.2);
  color: #0F766E;
}

.talk-card__speaker-name {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--forest);
  display: block;
}
.talk-card__speaker-role {
  font-size: 0.775rem;
  color: var(--muted);
}

.talk-card__track {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.7;
}

.talk-card__tba {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-style: italic;
}

.panel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
}

.panel-card__time {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.panel-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.panel-card__desc {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.panelists {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.panelist-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage);
  border-radius: 20px;
  padding: 0.3rem 0.875rem 0.3rem 0.3rem;
}

.panelist-chip__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--stone);
  flex-shrink: 0;
}

.panelist-chip__name {
  font-family: var(--font-display);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--forest);
}

.showcase-card {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.showcase-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.showcase-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  margin: 0;
  line-height: 1.6;
}

.showcase-card__trophy {
  font-size: 3rem;
  line-height: 1;
}

.closing-card {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  text-align: center;
}

.closing-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.375rem;
}

.closing-card p {
  font-size: 0.9rem;
  color: rgba(26,58,42,0.65);
  margin: 0;
}

.cfp-strip {
  background: rgba(15,118,110,0.06);
  border: 1px solid rgba(15,118,110,0.18);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cfp-strip p {
  font-size: 0.9rem;
  color: #3d3d3d;
  margin: 0;
  flex: 1;
  line-height: 1.55;
}

.cfp-strip a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #0F766E;
  text-decoration: none;
  border-bottom: 2px solid rgba(15,118,110,0.3);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.cfp-strip a:hover { border-color: #0F766E; }


/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .talk-cards--three { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .overview-grid          { grid-template-columns: 1fr; }
  .dg-days                { grid-template-columns: 1fr; }
  .dg-header-band__inner  { grid-template-columns: 1fr; }
  .bl-sched-band__inner   { grid-template-columns: 1fr; }
  .bl-partners-row        { grid-template-columns: 1fr; }
  .talk-cards             { grid-template-columns: 1fr; }
  .talk-cards--three      { grid-template-columns: 1fr; }
  .showcase-card          { grid-template-columns: 1fr; }
  .showcase-card__trophy  { display: none; }
}

@media (max-width: 768px) {
  .sch-section      { padding: 3.5rem var(--sp-4); }
  .dg-header-band   { padding: 2rem; }
  .bl-sched-band    { padding: 2rem; }
  .talks-band       { padding: 2rem; }
  .timeline-row     { grid-template-columns: 72px 1fr; }
  .timeline-entry__time { font-size: 0.7rem; }
  .timeline-row::before { left: 71px; }
}

@media (max-width: 600px) {
  .sch-subnav__link { padding: 0.75rem 1rem; font-size: 0.75rem; }
  .panelists        { flex-direction: column; }
}