/* ===== PAGE WEEK-END ===== */

.timeline h1 {
    text-align: center;
    font-family: 'Clicker Script', cursive;
    color: #004aad;
    font-size: 64px;
    margin-bottom: 50px;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  gap: 30px;
  align-items: center;
  margin: 0 auto 35px;
  width: 100%;
}

.time {
    font-family: 'Clicker Script', cursive;
    color: #004aad;
    font-size: 28px;
    font-weight: 600;
    text-align: right;
}

.content {
    border-left: 2px solid #004aad;
    padding-left: 25px;
}

.content h2 {
    font-family: 'Clicker Script', cursive;
    font-size: 30px;
    margin-bottom: 8px;
    color: #004aad;
}

.content p {
    font-size: 22px;
    line-height: 1.6;
}

.content a {
    color: #004aad;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.map-link {
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  text-decoration: none;
  font-size: 18px;
}

.timeline-day {
  position: relative;
  text-align: left;
  margin: 50px 0 30px;
}

.timeline-day::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #d9d9d9;
  z-index: 0;
}

.timeline-day h2 {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background: white;
  font-family: 'Clicker Script', cursive;
  color: #004aad;
  font-size: 3rem;
  font-weight: normal;
  margin: 0;
  z-index: 1;
}

@media (max-width: 768px) {

    .timeline {
        max-width: 700px;
        margin: 30px auto;
        padding: 0 20px;
    }

    .timeline h1 {
        font-size: 46px;
        margin-bottom: 35px;
    }

    .timeline-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 20px;
        align-items: start;
        margin-bottom: 30px;
    }

    .time {
        font-size: 22px;
        text-align: right;
    }

    .content {
        border-left: 2px solid #004aad;
        padding-left: 20px;
    }

    .content h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .content p {
        font-size: 18px;
    }
}
