.gridContainer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#shadowBox {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#contentArea {
  flex: 1;
}

#center-content .padding {
  padding: 25px 4.2337%;
}

#contentArea h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-variant-numeric: lining-nums;
  margin-top: .1rem;
}

#contentArea h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 150%;
  margin-top: 60px;
}

#contentArea p {
  margin: 0.5em 0;
}

#center-content a:link { color: #884749; text-decoration: none; }
#center-content a:visited { color: #884749; text-decoration: none; }
#center-content a:hover { color: #884749; text-decoration: underline; }

#center-content a.cta-button:link,
#center-content a.cta-button:visited,
#center-content a.cta-button:hover { color: #fff; text-decoration: none; }

.early-bird {
  font-size: 120%;
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background-color: #884749;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 8px;
}

.cta-button:hover {
  background-color: #6e3a3c;
  color: #fff;
}

.instructors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 60px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.instructor {
  padding: 0;
}

.instructor-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  float: right;
  margin: 0 0 8px 16px;
}

.instructor-info h3 {
  margin: 0 0 4px;
}

.instructor-info p {
  font-size: 100%;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  #contentArea h2 {
    margin-top: 48px;
  }

  .instructors {
    grid-template-columns: 1fr;
    column-gap: 48px;
    row-gap: 48px;
  }

  .instructor-photo {
    float: none;
    display: block;
    margin: 0 auto 16px;
  }

  .instructor-info h3 {
    text-align: center;
  }
}

/* ── Desktop table ── */
.schedule {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.schedule th,
.schedule td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.schedule th {
  background-color: #884749;
  color: #fff;
}

.schedule tbody tr:nth-child(even) {
  background-color: #f9f6f6;
}

.schedule td[rowspan] {
  background-color: #fff;
}

/* ── Mobile card layout ── */
.schedule-mobile {
  display: none;
}

.day-card {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.day-card-header {
  background-color: #884749;
  color: #fff;
  padding: 10px 14px;
  font-weight: 600;
}

.day-card-body {
  padding: 0;
}

.session-row {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
}

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

.session-time {
  font-weight: 600;
  margin: 0;
}

.session-detail {
  color: #555;
  margin: 2px 0 0;
}

.session-break {
  color: #555;
  text-align: center;
  padding: 6px 14px;
  background-color: #f9f6f6;
}

.session-break p {
  margin: 0;
}

/* ── Responsive toggle ── */
@media only screen and (max-width: 768px) {
  .schedule-desktop {
    display: none;
  }

  .schedule-mobile {
    display: block;
    margin-top: 15px;
  }
}
