.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(114, 113, 113, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(114, 113, 113, 0.25);
}

.location-image {
    width: 100%;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3em;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 15px;
}

.location-content {
    padding: 25px;
}

.location-name {
    color: #3b7a53;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5em;
}

.location-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #000000;
    line-height: 1.5em;
    font-size: 14px;
    font-weight: 500;
}

.info-icon {
    color: #3b7a53;
    margin-right: 10px;
    font-size: 1.2em;
    min-width: 20px;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-name {
        font-size: 1.4em;
    }

    .location-name {
        font-size: 30px;
    }
    .location-card .location-content {
        min-height: 0px;
    }
    .location-info {
        margin-bottom: 10px;
    }
    .info-item {
        font-size: 12px;
    }
}