/* Neighborhood Grid - Real Estate Locations */

.location-wrapper {
    margin: 40px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.location-block {
    background: transparent;
    border: none;
    padding: 0;
}

.location-block strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
    padding-bottom: 10px;
    border-bottom: none;
}

.location-block > div {
    margin-bottom: 8px;
}

.location-block a {
    color: #636363;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
    display: inline-block;
}

.location-block a:hover {
    color: var(--theme-primary-color, #FF5A3C);
}

.location-block .extra-links {
    margin-top: 8px;
}

.location-block .more-link {
    margin-top: 12px;
    padding-top: 0;
    border-top: none;
}

.location-block .more-link .read-more-btn {
    display: inline-block;
    padding: 0;
    background: transparent;
    color: #636363;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
}

.location-block .more-link .read-more-btn:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    color: var(--theme-primary-color, #FF5A3C);
}

/* Responsive */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .location-block strong {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .location-block a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}
