.event-container {
    border-radius: 12px;
    background: #F5F5F5;
    padding: 1rem 1rem 2rem;
    max-width: 430px;
}
.event-container h3 {
    font-style: normal;
}
.event-list--item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.event--date-time {
    display: flex;
    gap: 0.5rem;
}
.event-container ul {
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.event-container ul li {
    margin: 0;
}
.event--calendar {
    padding: 22px 0.25rem 0.5rem;
    background: #fff;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-width: 80px;
    max-height: 80px;
    aspect-ratio: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1;
    color: var(--header-blue, #032B68);
    font-weight: 600;
    border: 1px solid #B3B3B3;
}
.event--calendar:before {
    content: '';
    display: block;
    background: #E6425C;
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 100%;
}
.event--description {
    font-size: 14px;
    line-height: 1.4;
}
.event--calendar__month {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.35rem;
    font-family: var(--font__sans-serif);
    font-size: 15px;
}
.event--calendar__day {
    flex: 0 1 max-content;
    font-size: calc(20px + (26 - 20) * (100vw - 380px) / (1920 - 380));
}
.event--details {
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.event--details p.event--date {
    margin: 0;
    font-size: 18px;
    color: var(--header-blue, #032B68);
    font-weight: 600;
    line-height: 1;
}
.event--day-name {
    font-size: 16px;
    font-weight: 600;
}
.event--time {
    font-size: 15px;
}
.event-container h4 {
    display: flex;
    margin: 0;
    border-top: 1px solid #000;
    padding-top: 1.25rem;
}
.next-meeting,
.annual-meeting .event-list--item {
    display: none;
}
.next-meeting:first-of-type,
.annual-meeting .event-list--item:first-of-type {
    display: flex;
}
.annual-meeting {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}