.section-title {
    color: #272A33;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
}

.local-event-title-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.local-event-title-container .section-title {
    margin: 0;
}

.event-list-container .event {
    padding: 9px;
    border-radius: 14px;
    border: 1px solid #E5E5E5;
    margin-bottom: 10px;
}

.event .event-info-container {
    width: calc(100% - 212px);
}

.event .event-date-container {
    background-color: rgba(10, 31, 111, 0.05);
    border-radius: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    width: 95px;
    text-align: center;
    flex-shrink: 0;
    margin-right: 10px;
}

.event-list-container .event-row:first-of-type .event {
    border-top: 1px solid #e5e5e5;
}

.event .event-date-container .event-month {
    color: #0A1F6F;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.event .event-date-container .event-date {
    color: #0A1F6F;
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 0;
}

.event .event-date-container .event-day {
    color: #737373;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    margin-bottom: 0;
}

.event .event-button-container {
    max-width: 107px;
    width: auto;
    flex-shrink: 0;
}

.event .event-button-container button {
    background-color: #5FE6A6;
    border: 1px solid #5FE6A6;
    color: #080952;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 14px;
}

.event .event-info-container .event-title {
    color: #0A1F6F;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.event .event-info-container .event-meta,
.event .event-info-container .event-venue {
    color: #525252;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0;
}

.location-modal {
    background-color: #fff;
    border: 1px solid #D4D4D4;
    border-radius: 10px;
}

.location-modal input {
    border: 1px solid #D4D4D4;
    background-color: #fff;
}

.location-modal .location-input-icon svg {
    fill: #0A1F6F;
}

.location-modal .location-results .autocomplete-result:hover, .location-modal .location-results .autocomplete-result.selected {
    background-color: #f5f7fa;
}

.event .event-date-container .event-date, .event .event-info-container .event-title {
    font-family: 'Inter', sans-serif;
}

@media (min-width: 900px) {
    .local-event-title-container {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .event-list-container .event-row:hover {
        background-color: #f5f7fa;
    }

    .event-list-container .event {
        padding: 20px;
        margin-bottom: 12px;
    }

    .event .event-date-container, .event .event-info-container, .event .event-button-container {
        padding: 0;
    }

    .event .event-date-container {
        padding: 16px 0;
        margin-right: 24px;
    }

    .event .event-info-container {
        border-left: none;
    }

    .event .event-button-container {
        max-width: 150px;
        width: auto;
    }

    .event .event-info-container .event-title {
        font-size: 22px;
        line-height: 33px;
    }

    .event .event-info-container .event-meta,
    .event .event-info-container .event-venue {
        font-size: 15px;
        line-height: 24px;
    }

    .event-list-container .event-row:hover .event .event-button-container button {
        background-color: #53ca93;
        border: 1px solid #53ca93;
        transition: all 0.3s ease-in-out;
    }
}
