<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.explore-cities__title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 2rem;
}

.explore-cities__cities {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.explore-cities__cities li {
    margin-top: 2rem;
}

.explore-cities__link {
    display: block;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: bold;
    font-family: var(--fontFamilyHeaders);
}

.explore-cities__illustration {
    display: block;
    margin-top: 1rem;
    width: 100%;
    aspect-ratio: 1.75;
    object-fit: cover;
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow1), var(--boxShadow2);
}

.explore-cities__listing-count {
    color: var(--greyColor30);
}

@media (min-width: 813px) {
    .explore-cities__cities {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .explore-cities__cities li {
        margin-top: 0;
    }

    .explore-cities__cities li:nth-child(odd):last-child {
        grid-column: 1 / span 2;
    }
}
</pre></body></html>