.location-events {
    width: 100%;
    margin: 40px 0;
    direction: rtl;
}

.location-events-header {
    margin-bottom: 24px;
}

.location-events-eyebrow {
    display: inline-block;
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 700;

    color: #293991;
}

.location-events-title {
    margin: 0;

    font-size: 25px;
    font-weight: 800;
    line-height: 1.7;

    color: #222;
}

.location-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.location-event {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 20px;

    background: #fff;

    border: 1px solid #e8eaf2;
    border-radius: 16px;

    transition:
            transform .3s ease,
            box-shadow .3s ease,
            border-color .3s ease;
}

.location-event:hover {
    transform: translateY(-4px);

    border-color: rgba(41, 57, 145, .25);

    box-shadow:
            0 14px 35px rgba(41, 57, 145, .10);
}

.location-event-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(41, 57, 145, .08);

    color: #293991;

    border-radius: 13px;

    font-size: 19px;
}

.location-event-content {
    flex: 1;
}

.location-event-title {
    margin: 0 0 6px;

    font-size: 15px;
    font-weight: 700;

    color: #222;
}

.location-event-description {
    font-size: 13px;
    line-height: 1.9;

    color: #777;
}

@media (max-width: 1024px) {

    .location-events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .location-events {
        margin: 30px 0;
    }

    .location-events-title {
        font-size: 21px;
    }

    .location-events-grid {
        grid-template-columns: 1fr;
    }

    .location-event {
        padding: 16px;
    }

    .location-event-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

}