.city-chip {
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    border-radius: 18px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: calc(20% - 10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    min-height: 92px;
}

.city-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
    border-color: rgba(13, 110, 253, .25);
}

.city-ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 193, 7, .18);
    display: grid;
    place-items: center;
    font-size: 20px;
}

.city-name {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    text-align: center;
    line-height: 1.1;
}

/* Right side curved/circle crop */
.hero-clip {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 0 0 0 999px;
    /* big curve like screenshot */
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-clip {
        aspect-ratio: 16 / 12;
        border-radius: 999px 0 0 999px;
        /* more circular on desktop */
        max-width: 640px;
    }
}