/* ===========================================
   PROGRAMME PAGE
=========================================== */

.programme-page{

    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 25px 80px;

}

/* ===========================================
   HERO
=========================================== */

.programme-hero{

    text-align: center;
    margin-bottom: 60px;

}

.programme-hero h1{

    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 20px;

}

.programme-hero h2{

    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: #444;

}

.programme-hero span{

    color: #0059b3;

}

.programme-date{

    margin-top: 25px;
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;

}


/* ===========================================
   PROGRAMME STATUS
=========================================== */

.programme-status{

    background: #c6dff7;

    border-left: 6px solid #0059b3;

    border-radius: 12px;

    padding: 45px;

    margin-bottom: 70px;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);

}

.status-icon{

    font-size: 4rem;

    margin-bottom: 15px;

}

.programme-status h2{

    color: #003366;

    margin-bottom: 20px;

}

.programme-status p{

    max-width: 850px;

    margin: auto;

    line-height: 1.8;

    color: #555;

}

.publication-box{

    margin-top: 40px;

}

.publication-box h3{

    color: #003366;

    margin-bottom: 15px;

}

.publication-date{

    display: inline-block;

    background: #27ae60;

    color: white;

    padding: 14px 30px;

    border-radius: 40px;

    font-size: 1.15rem;

    font-weight: bold;

}


/* ===========================================
   TITLES
=========================================== */

.section-title{

    text-align: center;

    color: #003366;

    margin-bottom: 35px;

    font-size: 2rem;

}


/* ===========================================
   WHAT TO EXPECT
=========================================== */

.expect-grid{

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;

    margin-bottom: 70px;

}

.expect-card{

    background: white;

    border-radius: 14px;

    padding: 35px 25px;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);

    transition: .3s;

}

.expect-card:hover{

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0,0,0,.15);

}

.expect-icon{

    font-size: 3rem;

    margin-bottom: 20px;

}

.expect-card h3{

    color: #003366;

    margin-bottom: 15px;

}

.expect-card p{

    line-height: 1.7;

    color: #555;

}


/* ===========================================
   SCHEDULE
=========================================== */

.schedule-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;

    margin-bottom: 70px;

}

.day-card{

    background: white;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 20px rgba(0,0,0,.08);

}

.day-header{

    background: #003366;

    color: white;

    padding: 22px;

    text-align: center;

    font-size: 1.25rem;

    font-weight: bold;

}

.day-header span{

    display: block;

    margin-top: 8px;

    font-size: .95rem;

    font-weight: normal;

}

.day-card ul{

    list-style: none;

    padding: 30px;

    margin: 0;

}

.day-card li{

    padding: 12px 0;

    border-bottom: 1px solid #e8e8e8;

    position: relative;

    padding-left: 28px;

}

.day-card li:last-child{

    border-bottom: none;

}

.day-card li::before{

    content: "✔";

    position: absolute;

    left: 0;

    color: #27ae60;

    font-weight: bold;

}


/* ===========================================
   DOWNLOAD
=========================================== */

.download-programme{

    margin-bottom: 70px;

}

.download-box{

    background: #f3dcfb;

    border-radius: 14px;

    padding: 45px;

    text-align: center;

}

.download-icon{

    font-size: 3.5rem;

}

.download-box h2{

    color: #003366;

    margin: 20px 0;

}

.download-box p{

    color: #555;

    margin-bottom: 30px;

}

.download-btn{

    background: #bfc6cf;

    color: white;

    border: none;

    padding: 16px 34px;

    border-radius: 40px;

    font-size: 1rem;

    cursor: not-allowed;

}


/* ===========================================
   INFO BOX
=========================================== */

.info-box{

    display: flex;

    align-items: center;

    gap: 25px;

    background: #f8ebcc;

    border-left: 6px solid #f39c12;

    padding: 30px;

    border-radius: 12px;

}

.info-icon{

    font-size: 3rem;

}

.info-box h3{

    color: #003366;

    margin-bottom: 10px;

}

.info-box p{

    line-height: 1.8;

}


/* ===========================================
   RESPONSIVE
=========================================== */

@media (max-width: 1100px){

    .expect-grid{

        grid-template-columns: repeat(2,1fr);

    }

    .schedule-grid{

        grid-template-columns: repeat(2,1fr);

    }

}


@media (max-width: 768px){

    .programme-page{

        padding: 35px 15px 60px;

    }

    .programme-hero h1{

        font-size: 2.2rem;

    }

    .programme-hero h2{

        font-size: 1.2rem;

    }

    .programme-status{

        padding: 30px 20px;
    }

    .expect-grid{

        grid-template-columns: 1fr;

    }

    .schedule-grid{

        grid-template-columns: 1fr;

    }

    .info-box{

        flex-direction: column;

        text-align: center;

    }

}


@media (max-width: 480px){

    .programme-hero h1{

        font-size: 1.9rem;

    }

    .programme-date{

        font-size: 1rem;

    }

    .publication-date{

        width: 100%;

        box-sizing: border-box;

    }

    .download-box{

        padding: 30px 20px;

    }

    .download-btn{

        width: 100%;

    }

}