html, body {
  background-color: #fdffe6;
  margin: 0; /* avoids a thin white edge some browsers add by default */
}

/* the title */
.agenda-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}


.agenda-header {
    text-align: center;
    margin-bottom: 50px;
}

.agenda-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.agenda-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
}


/* FILTERS */

.agenda-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.agenda-filters a {
    padding: 10px 22px;
    border: 1px solid #ccc;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.agenda-filters a:hover,
.agenda-filters a.active {
    background: #222;
    color: white;
    border-color: #222;
}



/* GRID */
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* CARD */
.agenda-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

/* CONTENT */

.agenda-content {
    padding: 20px;
}

.agenda-category {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #777;
}

.agenda-content h2 {
    font-size: 20px;
    margin: 0 0 15px;
}

.agenda-description {
    line-height: 1.6;
    color: #555;
}


/* MOBILE */

@media (max-width: 768px) {

    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .agenda-header h1 {
        font-size: 32px;
    }

}
