/* here you can put your own css to customize and override the theme */

/* Responsive 4-column layout for location pages */
.location-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.location-feature-item {
    flex: 1;
    min-width: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
}

/* Mobile responsive breakpoints */
@media (max-width: 768px) {
    .location-features-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .location-feature-item {
        flex: none;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .location-feature-item {
        padding: 20px 15px;
    }
}