/* Card City Widget Styles */

.eic-card-city-wrapper {
    margin: 0;
}

.card-city-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 1.5px 5px rgba(112, 112, 112, 0.2);

}

.card-city-media {
    text-align: center;
    position: relative;
    border-radius: 50%;
}

.card-city-image {
    width: 100%;
    height: auto;
    overflow: visible;
    position: relative;
    border-radius: 28px;
}

.card-city-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;

}

.card-city-content {
    padding: 40px 20px 20px 20px;
    text-align: center;
}

.card-city-logo {
    width: 61px;
    height: 61px;
    border-radius: 50%;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 5px solid white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-city-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-city-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.card-city-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.card-city-cta {
    display: inline-block;
    padding: 10px 20px;
    color: #2a2a2a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.card-city-cta:hover {
    color: #7e7e7e;
}


