/* Agenda Section Background */
.agenda-section {
    background: #f5f5f5;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle, rgba(14, 91, 115, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.agenda-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 91, 115, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.agenda-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(213, 197, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.agenda-section .container {
    position: relative;
    z-index: 1;
}

.agenda-title-section h3 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.agenda-title-section small {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-top: 5px;
}

/* Agenda Card Redesign */
.agenda-card {
    background: white;
    border-radius: 0;
    border: none;
    border-left: 4px solid #0e5b73;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.agenda-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    border-left-color: #d5c58a;
}

.agenda-date {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 5px;
}

.agenda-month {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-transform: capitalize;
}

.agenda-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 15px 0 5px 0;
    line-height: 1.4;
}

.agenda-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.agenda-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #0e5b73;
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: capitalize;
}