.agenda {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.agenda h2 {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.agenda > div {
    margin-top: 1.5rem;
    width: 70%;
    display: flex;
    justify-content: space-around;
    align-items:center;
    gap:2rem;
}

.agenda > div p {
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
}

.agenda div p:first-of-type {
    border: 1px solid #F15A22;
}

.agenda div p:last-of-type {
    border: 1px solid #0B8293;
}

.agenda .cards {
    margin: 4rem 0;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 3rem;
}

.agenda .cards article {
    min-width:14rem;
    width: 20%;
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border: 1px solid #e8e8e8;
}

.agenda .cards article img {
    width:15%;
}

.agenda .cards article a {
    align-self: flex-end;
    padding: 0.8rem 1.5rem;
    background-color: rgba(11, 130, 147, 0.25);
    border: 2px solid rgba(11, 130, 147, 0);
    border-radius: 6px;
    margin-top: 1rem;
}

.agenda .cards article a:hover {
    background-color:#f8f8f8;
    border: 2px solid rgba(11, 130, 147, 0.25);
}

.agenda .cards article div {
    display:flex;
    justify-content: space-between;
}

.agenda .cards article ul {
    list-style-type: disc;
    list-style-position: inside;
    margin: 1rem 0;
}

.agenda .cards button {
    background-color:rgba(11, 130, 147, 0.25);
    border: 2px solid rgba(11, 130, 147, 0);
    border-radius: 6px;
    font-family: "Josefin Sans", sans-serif;
    color: #0B8293;
    padding: 0.8rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 0 auto;
}

.agenda .cards button:hover {
    background-color:#ffffff;
    border: 2px solid rgba(11, 130, 147, 0.25);
    cursor: pointer;
}