.city-links .city-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ff3152;
    background: rgba(255, 49, 82, 0.10);

    border-radius: 9px;

    flex-shrink: 0;

    line-height: 0;
}

.city-links .city-icon svg {
    display: block;

    width: 20px;
    height: 20px;

    fill: currentColor;

    color: #ff3152;

    opacity: 1;
    visibility: visible;
}

.city-links .city-icon svg path {
    fill: currentColor;
}

/* =========================================
   CITY AVAILABILITY
========================================= */

.cities {
    width: 100%;
    padding: 70px 20px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 49, 82, 0.08),
            transparent 45%
        ),
        #050505;
    box-sizing: border-box;
}

.cities-inner {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.cities-heading {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.cities-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #ff3152;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cities h2 {
    margin: 0 0 18px;

    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 700;
}

.cities .subtext {
    max-width: 760px;
    margin: 0 auto;

    color: #a9a9a9;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   CITY GRID
========================================= */

.city-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}


/* =========================================
   CITY CARD
========================================= */

.city-links a {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 16px;

    color: #eeeeee;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;

    font-size: 14px;
    font-weight: 500;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;

    box-sizing: border-box;
}

.city-links a:hover {
    color: #ffffff;

    background: rgba(255, 49, 82, 0.08);

    border-color: rgba(255, 49, 82, 0.4);

    transform: translateY(-3px);
}


/* =========================================
   LOCATION ICON
========================================= */

.city-icon {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: rgba(255, 49, 82, 0.1);
}

.city-icon svg {
    width: 18px;
    height: 18px;

    fill: #ff3152;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .city-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 768px) {

    .cities {
        padding: 55px 15px;
    }

    .cities-heading {
        margin-bottom: 35px;
    }

    .cities h2 {
        font-size: 30px;
    }

    .cities .subtext {
        font-size: 14px;
    }

    .city-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .city-links a {
        padding: 13px;
        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {

    .cities {
        padding: 45px 12px;
    }

    .cities h2 {
        font-size: 26px;
    }

    .cities .subtext {
        font-size: 13px;
        line-height: 1.7;
    }

    .city-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .city-links a {
        padding: 13px 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    .cities h2 {
        font-size: 23px;
    }

    .city-links a {
        font-size: 12.5px;
    }

}