/* ============================================================
   MEETINGS PAGE
   ============================================================ */

/* ---- Schedule Cards ---- */
.schedule-section {
  background: var(--cream);
  padding: 64px 40px 80px;
}

.schedule-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: center;
}

.schedule-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.schedule-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.schedule-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.schedule-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--crimson);
}

.schedule-card-meta { display: flex; flex-direction: column; gap: 4px; }

.schedule-card-meta h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.3;
}

.schedule-card-meta span {
  font-size: 14px;
  color: var(--text-2);
}

/* Map embed */
.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Time rows */
.time-rows { display: flex; flex-direction: column; gap: 0; }

.time-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.time-row:last-child { border-bottom: none; }

.time-row-day { display: flex; flex-direction: column; gap: 2px; }
.time-row-day .label { font-size: 13px; color: var(--text-2); }
.time-row-day .value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
}

.time-row-when { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.time-row-when .time { font-size: 14px; color: var(--text-2); }
.time-row-when .duration { font-size: 15px; font-weight: 600; color: var(--crimson); }

/* ---- Meetings List ---- */
.meetings-section {
  background: var(--surface);
  padding: 64px 40px 96px;
}

.meetings-section-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: center;
}

.meetings-section-header .subtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.meetings-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.meeting-item { display: flex; flex-direction: column; gap: 16px; }

.meeting-item-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
}

.slide-embed-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  background: var(--text-1);
}

.slide-embed-corners::before,
.slide-embed-corners::after {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  z-index: 2;
  pointer-events: none;
}

.slide-embed-corners::before {
  top: 16px; left: 16px;
  border-top: 3px solid rgba(252,249,248,0.3);
  border-left: 3px solid rgba(252,249,248,0.3);
}

.slide-embed-corners::after {
  bottom: 56px; right: 16px;
  border-bottom: 3px solid rgba(252,249,248,0.3);
  border-right: 3px solid rgba(252,249,248,0.3);
}

.slide-embed-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.slide-embed-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.slide-embed-bar span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.slide-embed-bar a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.slide-embed-bar a:hover { color: white; }

.meeting-link {
  text-align: center;
  margin-top: 4px;
}

.meeting-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--crimson);
  transition: gap 0.2s;
}

.meeting-link a:hover { gap: 10px; }

/* No slides placeholder */
.slide-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--text-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 15px;
  border-radius: var(--radius-md);
}

.slide-placeholder svg { width: 40px; height: 40px; fill: rgba(255,255,255,0.2); }

/* Responsive */
@media (max-width: 900px) {
  .schedule-cards { grid-template-columns: 1fr; }
  .schedule-section { padding: 48px 20px 64px; }
  .meetings-section { padding: 48px 20px 64px; }
}
