/* COLUMN */
.agenda-col {
    display: flex;
}

/* CARD */
.agenda-card-modern {
    position: relative;
    width: 100%;
    min-height: 260px;
    padding: 28px 28px 70px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.agenda-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* DATE */
.agenda-date-big {
    margin-bottom: 12px;
}

.agenda-day-number {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
}

.agenda-day-name {
    font-size: 16px;
    color: #6c757d;
}

/* CONTENT */
.agenda-title-modern {
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.agenda-meta,
.agenda-time {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* FOOTER */
.agenda-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

/* BADGE */
.agenda-badge-modern {
    background: #0b5d6e;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 999px;
    font-weight: 500;
}

/* DETAIL BUTTON */
.agenda-detail-link,
.agenda-detail-btn-modern {
    position: absolute;
    right: 20px;
    bottom: 20px;

    background: none;
    border: none;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.agenda-detail-link i {
    font-size: 16px;
}
