@layer page {
  /* ---- Panel tabs (adapted from profile.scss) ---- */
  .summit-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em;
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
  }
  .summit-tabs .tab {
    padding: 1em 1.5em;
    cursor: pointer;
    border-radius: 12px 12px 0 0;
    background: #ddd;
    color: #666;
    font-weight: bold;
    text-align: center;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .summit-tabs .tab:hover {
    background: #ccc;
  }
  .summit-tabs .tab.active {
    background: var(--bs-primary, #0d6efd);
    color: #fff;
    pointer-events: none;
    cursor: default;
  }
  .summit-panel {
    display: none;
    padding: 10px 0 20px;
  }
  .summit-panel.active {
    display: block;
  }
  /* ---- Panel heading ---- */
  .summit-panel .panel-heading {
    margin-bottom: 1.5em;
  }
  .summit-panel .panel-heading .panel-date {
    color: var(--bs-primary, #0d6efd);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2em;
  }
  .summit-panel .panel-heading h3 {
    margin: 0;
  }
  /* ---- Schedule table ---- */
  .summit-schedule-wrap {
    overflow-x: auto;
    margin-bottom: 2.5em;
  }
  table.summit-schedule {
    width: 100%;
    border-collapse: collapse;
  }
  table.summit-schedule th,
  table.summit-schedule td {
    text-align: left;
    padding: 0.7em 0.9em;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
    overflow-wrap: break-word;
  }
  table.summit-schedule thead th {
    border-bottom: 2px solid #ccc;
    font-weight: bold;
    white-space: nowrap;
  }
  table.summit-schedule td.time {
    white-space: nowrap;
    font-weight: bold;
    color: var(--bs-primary, #0d6efd);
  }
  table.summit-schedule td.speaker {
    font-weight: bold;
  }
  table.summit-schedule tr.discussion td {
    font-style: italic;
    color: #666;
  }
  /* ---- Speaker cards ---- */
  .speaker-card {
    max-width: 820px;
    margin: 0 auto 1.75em;
    padding: 1.5em 1.75em;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    line-height: 1.6;
    overflow-wrap: break-word;
  }
  .speaker-card h3 {
    margin: 0 0 0.15em;
  }
  .speaker-card .role {
    color: #666;
    font-weight: 600;
    margin-bottom: 1em;
  }
  /* ---- Portraits ---- */
  /* Single-speaker cards: portrait beside the name/role header */
  .speaker-card .speaker-main {
    display: flex;
    align-items: center;
    gap: 1.1em;
    margin-bottom: 1.1em;
  }
  .speaker-card .speaker-heading {
    min-width: 0;
  }
  .speaker-card .speaker-heading .role {
    margin-bottom: 0;
  }
  .portrait {
    flex-shrink: 0;
    width: 96px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e0e4ea;
    background: #eef1f6;
  }
  /* Combined (group) cards: one portrait per person */
  .speaker-card .people {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
  }
  .speaker-card .person {
    display: flex;
    align-items: flex-start;
    gap: 1em;
  }
  .speaker-card .person p {
    margin: 0;
  }
  .portrait.small {
    width: 76px;
    height: 95px;
    border-radius: 10px;
    margin-top: 0.2em;
  }
  .speaker-card .bio p {
    margin: 0 0 0.8em;
  }
  .speaker-card .milestones {
    margin: 0.4em 0 1em 1.2em;
  }
  .speaker-card .abstract {
    margin-top: 1.2em;
    padding: 1em 1.25em;
    border-left: 4px solid var(--bs-primary, #0d6efd);
    background: #f6f8fc;
    border-radius: 0 10px 10px 0;
  }
  .speaker-card .abstract h4 {
    margin: 0 0 0.5em;
  }
  .speaker-card .abstract p {
    margin: 0 0 0.7em;
  }
  .speaker-card .abstract p:last-child {
    margin-bottom: 0;
  }
  .speaker-card .abstract blockquote {
    margin: 0.8em 0 0;
    padding-left: 1em;
    border-left: 3px solid #ccd;
    font-style: italic;
    color: #445;
  }
  @media (max-width: 768px) {
    /* Tabs wrap two per row instead of overflowing */
    .summit-tabs {
      gap: 0.4em;
    }
    .summit-tabs .tab {
      flex: 1 1 40%;
      padding: 0.75em 0.5em;
      font-size: 1rem;
      border-radius: 10px 10px 0 0;
    }
    /* Schedule: collapse the 3-column table into stacked blocks */
    .summit-schedule-wrap {
      overflow-x: visible;
    }
    table.summit-schedule,
    table.summit-schedule tbody,
    table.summit-schedule tr,
    table.summit-schedule td {
      display: block;
      width: 100%;
    }
    table.summit-schedule thead {
      /* visually hidden but kept for accessibility */
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
    }
    table.summit-schedule tr {
      border: 1px solid #e5e5e5;
      border-radius: 10px;
      padding: 0.6em 0.9em;
      margin-bottom: 0.8em;
    }
    table.summit-schedule td {
      border: none;
      padding: 0.15em 0;
      font-size: 1rem;
    }
    table.summit-schedule td.time {
      font-size: 0.9rem;
    }
    table.summit-schedule td.speaker {
      font-size: 1.1rem;
    }
    /* Cards: tighter padding and slightly smaller prose */
    .speaker-card {
      padding: 1.1em 1.2em;
      font-size: 1.05rem;
    }
    .speaker-card .milestones {
      margin-left: 1em;
      padding-left: 0.2em;
    }
    .speaker-card .abstract {
      padding: 0.85em 1em;
    }
    .summit-panel .panel-heading h3 {
      font-size: 1.4rem;
    }
    /* Smaller portraits on phones */
    .portrait {
      width: 76px;
      height: 95px;
    }
    .portrait.small {
      width: 62px;
      height: 78px;
    }
    .speaker-card .speaker-main {
      gap: 0.85em;
    }
    .speaker-card .person {
      gap: 0.8em;
    }
  }
}

/*# sourceMappingURL=summit.css.map */
