
/* Original body line: white standard background */
/*
body {
  font-family: Inter, system-ui, sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 2.5rem 1.5rem;
  line-height: 1.65;
  color: #111;
}
*/

/* START: Trying out new background + content card: add body and .page */
body {
  font-family: Inter, system-ui, sans-serif;
  background: #f8fafc;   /* soft off-white */
  color: #111;
  margin: 0;
}

.page {
  max-width: 900px;
  margin: 1rem auto;  /* slightly closer to top */
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  line-height: 1.65;
}

.page table th {
  text-align: left;
}

/* END: Trying out new background + content card: add body and .page */

h1 { font-size: 2.2rem; }
h2 { margin-top: 2.5rem; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  padding: 0.6rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.speakers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  isolution: isolate;
}

.speaker {
  text-align: center;
}

.speaker img {
  width: 130px !important;
  height: 130px !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.75rem;
}

.speaker-name {
  font-weight: 600;
}

.speaker-affil {
  font-size: 0.9rem;
  color: #555;
}
