/* =========================
   CALENDAR PAGE
========================= */

.calendar-section{
    max-width:1200px;
    margin:50px auto;
    padding:20px;
}

.calendar-header{
    text-align:center;
    margin-bottom:50px;
}

.calendar-header h2{
    color:#0056b3;
    font-size:38px;
    margin-bottom:15px;
    font-weight:700;
}

.calendar-header p{
    max-width:850px;
    margin:auto;
    color:#555;
    line-height:1.8;
    font-size:16px;
}

/* =========================
   EVENT LIST
========================= */

.calendar-container{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.calendar-card{
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
    border-left:6px solid #0056b3;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    transition:.3s;
}

.calendar-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,86,179,.18);
}

.event-date{
    min-width:120px;
    background:linear-gradient(135deg,#0056b3,#0077e6);
    color:#fff;
    border-radius:12px;
    padding:15px;
    text-align:center;
}

.event-date span{
    display:block;
    font-size:32px;
    font-weight:700;
    line-height:1;
}

.event-date small{
    font-size:14px;
    letter-spacing:.5px;
}

.event-details{
    flex:1;
}

.event-details h3{
    color:#0056b3;
    margin-bottom:10px;
    font-size:24px;
}

.event-details p{
    color:#555;
    margin-bottom:5px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .calendar-card{
        flex-direction:column;
        text-align:center;
    }

    .event-date{
        width:100%;
        max-width:180px;
    }

    .calendar-header h2{
        font-size:30px;
    }

}

@media(max-width:480px){

    .calendar-header h2{
        font-size:26px;
    }

    .event-details h3{
        font-size:20px;
    }

}