/* schedule-specific styles - integrates with extracted site style */
body {
  background: #0b0b0b;
  color: #e6e6e6;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin: 0;
  padding: 2rem;
}
.container {
  max-width: 900px;
  margin: 0 auto;
}
.header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.main-logo {
  height: 56px;
}
h1 {
  font-size: 1.6rem;
  margin: 0;
}
.schedule {
  margin-top: 1rem;
  border-collapse: collapse;
  width: 100%;
}
.slot {
  display: grid;
  grid-template-columns: 110px 1fr 140px;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: start;
}
.time {
  color: #9aa0a6;
  font-weight: 600;
}
.time-start,
.time-end {
  align-self: start;
}
.time-start {
  justify-self: end;
  text-align: right;
}
.time-end {
  justify-self: start;
  text-align: left;
}
.title {
  font-weight: 700;
  color: #fff;
}
.meta {
  color: #c9c9c9;
  font-size: 0.9rem;
}
.headshot {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.headshot-group {
  display: flex;
  gap: 12px;
}
.speaker-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.speaker-content .title {
  margin: 0;
}
.slot.break {
  background: none;
}
.slot.break .break-label {
  font-weight: 600;
  text-align: center;
  color: #ff6a00;
  background: rgba(255,69,0,0.06);
  padding: 0.5rem;
  border-radius: 6px;
}
.footer-note {
  margin-top: 1.5rem;
  color: #9aa0a6;
  font-size: 0.95rem;
  text-align: center;
}
.sponsor-section {
  margin: 2.5rem 0 0;
  padding: 1.5rem 1rem;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.sponsor-heading {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff;
}
.sponsor-tier {
  margin: 0 0 1.5rem;
  color: #ff6a00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}
.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.sponsor-card img {
  max-width: 200px;
  max-height: 90px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0,0,0,0.3);
  padding: 0.5rem;
}
.sponsor-card span {
  font-size: 0.9rem;
  color: #c9c9c9;
  line-height: 1.3;
}
.sponsor-card:hover {
  transform: scale(1.05);
  filter: brightness(1.08);
}
@media (max-width: 720px) {
  .slot {
    grid-template-columns: 1fr;
  }
  .time {
    order: -1;
  }
  .time-end {
    order: 2;
    justify-self: start;
    margin-top: 0.25rem;
  }
  .speaker-row {
    grid-template-columns: 1fr;
  }
  .headshot-group {
    justify-content: flex-start;
  }
}
