.alc-agenda{
    max-width:1300px;
    margin:40px auto;
    padding:0 20px;
    font-family:Arial,Helvetica,sans-serif;
}

/************************************************
 JOUR
************************************************/

.agenda-day{

    margin-bottom:60px;

    border:none;

    border-radius:22px;

    overflow:hidden;

    background:#ffffff;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.agenda-date{

    background:linear-gradient(135deg,#f85903,#ff8b2c);

    color:#fff;

    padding:22px 28px;

    font-size:28px;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;

}

/************************************************
 HEURE
************************************************/

.agenda-time{
    display:grid;
    grid-template-columns:100px 1fr;
    gap:25px;
    padding:25px;
    border-top:1px solid #ececec;
    align-items:flex-start;
}

.agenda-time:first-of-type{
    border-top:none;
}

.agenda-hour{

    position:sticky;

    top:20px;

    background:#111;

    color:#fff;

    border-radius:16px;

    padding:16px 0;

    text-align:center;

    font-size:22px;

    font-weight:700;

    line-height:1.4;

}

/************************************************
 COLONNE CARTES
************************************************/

.agenda-events{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

    gap:18px;

    width:100%;

}

/************************************************
 CARTE
************************************************/

.agenda-card{

    background:#fafafa;

    border:1px solid #ededed;

    border-radius:16px;

    padding:18px;

    transition:.25s;

    position:relative;

    overflow:hidden;

}

.agenda-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:#f85903;

}

.agenda-card:hover{

    transform:translateY(-4px);

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

}

.agenda-card-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
    margin-bottom:10px;
}

.agenda-team{

    font-size:22px;

    font-weight:700;

    color:#111;

    margin-bottom:10px;

}

.agenda-badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:40px;
    font-size:11px;
    font-weight:700;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:.5px;
    white-space:nowrap;
}

/************************************************
 BADGES
************************************************/

.agenda-reprise .agenda-badge{
    background:#f85903;
}

.agenda-entrainement .agenda-badge{
    background:#4b5563;
}

.agenda-match .agenda-badge{
    background:#16a34a;
}

.agenda-tournoi .agenda-badge{
    background:#2563eb;
}

.agenda-stage .agenda-badge{
    background:#ca8a04;
}

.agenda-default .agenda-badge{
    background:#555;
}

/************************************************
 CONTENU
************************************************/

.agenda-subtitle{

    display:inline-flex;

    align-items:center;

    padding:5px 12px;

    border-radius:30px;

    color:#fff;

    font-size:11px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:14px;

}

.agenda-lieu,
.agenda-adversaire,
.agenda-commentaire{
    margin-top:8px;
    color:#666;
    line-height:1.5;
    font-size:15px;
}

/************************************************
 MOBILE
************************************************/

@media(max-width:768px){

    .agenda-time{
        grid-template-columns:1fr;
        gap:18px;
    }

    .agenda-hour{
        width:90px;
        font-size:20px;
    }

    .agenda-date{
        font-size:19px;
    }

    .agenda-events{
        grid-template-columns:1fr;
    }

    .agenda-card-header{
        flex-direction:column;
        align-items:flex-start;
    }

}