/* =====================================
   AXM 2026 Academic Events
===================================== */

.axm2026-events-section{
    background:#f6f3f7;
    padding:80px 20px;
    position:relative;
}

.axm2026-container{
    max-width:1200px;
    margin:auto;
}

.axm2026-heading{
    text-align:center;
    margin-bottom:50px;
}

.axm2026-heading h2{
    font-size:40px;
    font-weight:700;
    color:#5e217c;
    margin-bottom:10px;
}

.axm2026-heading p{
    color:#666;
    font-size:16px;
}

/*.axm2026-event-card{*/
/*    background:#fff;*/
/*    border-radius:16px;*/
/*    margin-bottom:25px;*/
/*    overflow:hidden;*/
/*    box-shadow:0 10px 30px rgba(0,0,0,0.08);*/
/*    border-left:5px solid #7b2f8e;*/
/*}*/
.axm2026-event-list{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
}

.axm2026-event-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border-top:4px solid #7b2f8e;
    height:100%;
}
.axm2026-event-header{
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.axm2026-event-header h3{
    margin:0;
    color:#5e217c;
    font-size:24px;
}

.axm2026-event-header span{
    color:#777;
    display:block;
    margin-top:8px;
}

.axm2026-toggle-btn{
    background:#7b2f8e;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.axm2026-toggle-btn:hover{
    background:#5e217c;
}

.axm2026-event-content{
    display:none;
    padding:0 25px 25px;
    grid-template-columns:350px 1fr;
    gap:30px;
}

.axm2026-event-card.active .axm2026-event-content{
    display:grid;
}

.axm2026-event-image img{
    width:100%;
    border-radius:12px;
    display:block;
}

.axm2026-event-description p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.axm2026-downloads{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.axm2026-btn{
    background:#7b2f8e;
    color:#fff;
    text-decoration:none;
    padding:12px 18px;
    border-radius:50px;
    transition:0.3s;
    font-size:14px;
}

.axm2026-btn:hover{
    background:#5e217c;
}

.axm2026-register{
    background:#d12c88;
}

.axm2026-register:hover{
    background:#b91f76;
}

@media(max-width:768px){

    .axm2026-heading h2{
        font-size:30px;
    }

    .axm2026-event-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .axm2026-event-content{
        grid-template-columns:1fr;
    }

}
@media(max-width:991px){
    .axm2026-event-list{
        grid-template-columns:1fr;
    }
}