
.agenda-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.agenda-card{
    display:flex;
    gap:20px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.agenda-media{
    width:280px;
    min-width:280px;
    background:#f5f5f5;
}

.agenda-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.agenda-content{
    flex:1;
    padding:20px;
}

.agenda-title{
    margin:0 0 12px;
    font-size:26px;
}

.agenda-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:16px;
}

.agenda-badge{
    background:#f0f4f8;
    border-radius:30px;
    padding:8px 14px;
    font-size:14px;
}

.agenda-actions{
    margin-top:20px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.agenda-button{
    display:inline-block;
    padding:10px 16px;
    border-radius:10px;
    background:#0073aa;
    color:#fff !important;
    text-decoration:none;
    font-weight:bold;
}

.agenda-button:hover{
    background:#005177;
}

.agenda-free{
    color:#1d9b50;
    font-weight:bold;
}

.agenda-price{
    color:#0073aa;
    font-weight:bold;
}

.agenda-pagination{
    margin-top:30px;
}

@media(max-width:768px){

    .agenda-card{
        flex-direction:column;
    }

    .agenda-media{
        width:100%;
        min-width:100%;
        height:240px;
    }
}
