/* Chronology Page Styles */

.chronology-wrapper {
  max-width: 800px;
  margin: 0 auto;
  font-family: inherit;
}

/* Date Divider Style (Pill shape with lines) */
.date-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 40px 0 30px;
}

.date-divider::before,
.date-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #f1dede;
}

.date-divider span {
  padding: 10px 30px;
  color: #ee4023;
  font-size: 40px;
  font-weight: 700;
  border: 1px solid #f1dede;
  border-radius: 50px;
  margin: 0 15px;
  background: #fff;
}

.mt-5 {
  margin-top: 50px;
}

/* Timeline Item Card Style */
.timeline-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  background-color: #fff;
}

.time-header {
  background-color: #e5e5e5;
  padding: 12px 32px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  border-bottom: 1px solid #e5e7eb;
}

/* Event Body (White box) */
.event-body {
  padding: 32px;
  text-align: center;
  color: #555;
  font-size: 20px;
  line-height: 1.6;
}

.event-body p {
  margin: 0;
}

.event-body p + p {
  margin-top: 15px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .date-divider span {
    font-size: 20px;
    padding: 8px 20px;
  }
  .time-header {
    font-size: 18px;
    padding: 12px 15px;
  }
  .event-body {
    font-size: 16px;
    padding: 16px;
  }
}
