.location-other-locations-section {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
    text-align: center;
    background: var(--nv-blue);
}

.location-other-locations-heading {
    color: var(--nv-white);
}

p.location-other-locations-subtitle {
    color: var(--nv-white);
}

/* New styles for the dynamic location list */
.location-other-locations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    list-style: none;
    padding: 0;
    margin: var(--space-lg) auto 0;
    max-width: 900px;
}

.location-other-locations-chip a {
    display: inline-block;
    text-decoration: none;
    color: var(--nv-white);
    background-color: var(--nv-blue-lighter);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.location-other-locations-chip a:hover {
    color: var(--nv-white);
    background-color: var(--nv-orange);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

@media (prefers-color-scheme: dark) {
    .location-other-locations-chip a {
        color: var(--nv-white);
        background-color: var(--nv-orange);
    }

    .location-other-locations-chip a:hover {
        color: var(--nv-white);
        background-color: var(--nv-blue-lighter);
    }
}

@media (max-width: 768px) {
    .location-other-locations-section {
        padding-top: var(--space-section);
        padding-bottom: var(--space-section);
        text-align: center;
        background: var(--nv-blue);
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

}

@media (max-width: 576px) {
    .location-other-locations-chip a {
        padding: 8px 14px;
        font-size: 1.4rem;
    }

    .location-other-locations-list {
        gap: 8px;
    }

}