/* ==============
   Timetable Page
=============== */

.timetable-single {
  padding: 0 2rem 4rem;
  background: #fff;
}

body.admin-bar .timetable-single {
  padding-top: 0rem;
}

.timetable-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
}

.timetable-content {
  flex: 0 0 65%;
  border-right: 2px solid #212121;
  padding-right: 2rem;
}

.timetable-sidebar {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
}


.timetable-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}


/* ================
   Responsive Adjustments
================ */
@media (max-width: 768px) {

  .timetable-content {
    border-right: 0;
    padding-right: 1rem;
  }

  .timetable-container {
    flex-direction: column;
  }

  .timetable-content,
  .timetable-sidebar {
    flex: 1 1 100%;
  }

}

/* Introduction section */
.timetable-intro {
  margin-top: 2rem;
}

.timetable-intro img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

/* Session styling */
.timetable-sessions {
  margin-top: 3rem;
}

.timetable-session {
  margin-bottom: 2rem;
}

.session-label,
.speaker-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
}

.session-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #111;
}


.session-text {
  margin-bottom: 1.5rem;
}

.session-text,
.speaker-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Sidebar timetable list */
.timetable-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #111;
}

.timetable-entry {
  margin-bottom: 1rem;
}

/* Timetable Sidebar Entries */
.entry-heading {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  font-size: .9rem;
}

.entry-value {
  font-family: "eb-garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: .9rem;
  line-height: 1.5;
  color: #333;
}

/* Timetable Main Content Text Blocks */
.timetable-body,
.session-label,
.session-text,
.speaker-text {
  font-family: "eb-garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
}

/* Headings: H1, H2, H3, H4 (.session-title) on Timetable Page */
.timetable-single h1,
.timetable-single h2,
.timetable-single h3,
.timetable-single .session-title {
  font-family: "gill-sans-nova",Arial,sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  color: #111;
  margin-bottom: 0.25rem;
  line-height: 1.2;
  text-transform: none;
}


/* Timetable session layout */
.timetable-session {
  margin-bottom: 2rem;
}

.session-columns {
  display: flex;
  gap: 2rem;
}

.session-label {
  flex: 0 0 15%;
  font-family: "eb-garamond", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  font-size: 1rem;
  color: #9d9da1;
}

.session-details {
  flex: 1;
}

.session-text,
.speaker-text,
.speaker-label {
  font-family: "eb-garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: .9rem;
  line-height: 1.6;
  color: #333;
}

.speaker-label {
  font-size: .75rem;
 font-weight: 600;
 font-family: "gill-sans-nova",Arial,sans-serif;
}


@media (max-width: 768px) {
  .session-columns {
    flex-direction: column;
  }

  .session-label {
    flex: none;
    margin-bottom: 0.5rem;
  }
}

.align-with-session-details {
  padding-left: 15%;
  box-sizing: border-box;
}


@media (max-width: 768px) {
  .align-with-session-details {
    padding-left: 0;
  }
}


