.eic-city-card {
    background:rgb(255, 255, 255);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 31, 58, 0.08);
    display: flex;
    flex-direction: column;
}

.eic-city-media {
    width: 100%;
    height: 0;
    padding-bottom: 78%;
    position: relative;
}

.eic-city-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 5px;
    border-radius: 11px;
}

.eic-city-content {
    position: relative;
    padding: 47px 31px 37px;
    text-align: center;
}

.eic-city-flag-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background:rgb(255, 255, 255);
    box-shadow: 0 6px 18px rgba(15, 28, 53, 0.14);
    position: absolute;
    left: 50%;
    top: -39px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.eic-city-flag {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.eic-city-title {
    margin: 0 0;
    color:rgb(0, 0, 0);
    font-size: clamp(22px, 1.7vw, 30px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0;
}

.eic-city-description {
    padding: 15px 0 15px 0;
    line-height: 1.55;
    margin: 0.
    max-width: 740px;
}

.eic-city-description p {
    color:rgb(99, 102, 110);
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    
}

.eic-city-cta {
    color:rgb(0, 0, 0);
    font-size: clamp(5px, 1.1vw, 19px);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.eic-city-cta:hover,
.eic-city-cta:focus {
    color: #152346;
    opacity: 0.78;
}

@media (max-width: 991px) {
    .eic-city-content {
        padding: 48px 26px 34px;
    }

    .eic-city-flag-wrap {
        width: 70px;
        height: 70px;
        top: -35px;
    }

    .eic-city-flag {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767px) {
    .eic-city-card {
        border-radius: 12px;
    }

    .eic-city-content {
        padding: 44px 18px 28px;
    }

    .eic-city-flag-wrap {
        width: 62px;
        height: 62px;
        top: -31px;
    }

    .eic-city-flag {
        width: 38px;
        height: 38px;
    }
}
