.location-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 40px;
    margin: 0;
}

.location-grid-item {
    display: block;
    border-radius: 20px;
    border: 1px solid #CF202E;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    position: relative;
}

.location-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(207, 32, 46, 0.15);
}

.elementor img.location-grid-image {
    width: 100%;
    height: 232px;
    object-fit: cover;
    display: block;
}

.location-grid-text {
    padding: 30px 20px;
}

.location-grid-title {
    color: black;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.location-grid-desc {
    font-weight: 400;
    color: #57595b;
    font-size: 16px;
    margin: 0;
    padding-right: 30px;
    line-height: 1.5;
}

.location-grid-arrow {
    position: absolute;
    right: 20px;
    bottom: 10px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
}

.location-grid-arrow svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: black;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.location-highlights {
    margin-top: 15px;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.53);
}

.location-highlights ul {
    padding-left: 20px;
    margin: 0;
}

@media (max-width: 1024px) {
    .location-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .location-grid-text {
        padding: 20px;
    }
    .location-grid-container {
        row-gap: 20px;
    }
    .elementor img.location-grid-image {
        height: 212px;
    }
}

@media (max-width: 640px) {
    .location-grid-container {
        grid-template-columns: 1fr;
    }
}
