/* Agenda Specific Styles */
.agenda-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.agenda-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.agenda-date {
    background: var(--primary-color);
    color: white;
    width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    text-align: center;
}

.agenda-date .day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.agenda-date .month-year {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.agenda-content {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agenda-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.agenda-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.agenda-meta span {
    display: flex;
    align-items: center;
}

.agenda-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.agenda-desc {
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .agenda-card {
        flex-direction: column;
    }
    .agenda-date {
        width: 100%;
        padding: 1rem;
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
    }
    .agenda-date .day {
        font-size: 2rem;
        margin-bottom: 0;
    }
}
