/* =============================================
   Top Featured Locations Section
   Scoped under .top-locations-wrapper
   to prevent conflict with existing site CSS
   ============================================= */

.top-locations-wrapper {
    background: #faf8ff;
    padding: 60px 0;
}

/* --- Info Card (Left col) --- */
.top-locations-wrapper .xxx .veshm-location-prt {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
}
.top-locations-wrapper .xxx .veshm-location-prt p {
    margin: 0 0 6px;
    color: #555;
    font-size: 14px;
}
.top-locations-wrapper .xxx .veshm-location-prt h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #022f5d;
    text-transform: capitalize;
}
.top-locations-wrapper .xxx .veshm-location-prt a {
    color: #017efa;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.top-locations-wrapper .xxx .veshm-location-prt a:hover {
    color: #c08831 !important;
}

/* --- Location Card --- */
.top-locations-wrapper .veshm-location-prt {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0;
    transition: 0.3s ease-in-out;
}
.top-locations-wrapper .veshm-location-prt:hover {
    transform: translate(0px, -8px);
    box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.1);
}

/* --- Location Image --- */
.top-locations-wrapper .veshm-location-figure {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
}
.top-locations-wrapper .veshm-location-figure img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.top-locations-wrapper .veshm-location-prt:hover .veshm-location-figure img {
    transform: scale(1.05);
}

/* --- Lists badge (top-right) --- */
.top-locations-wrapper .veshm-location-lists {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #ffffff;
    z-index: 1;
    padding: 0 12px;
    font-weight: 500;
    font-size: 12px;
    color: #034080;
}

/* --- Content block below image --- */
.top-locations-wrapper .veshm-location-content {
    background: #fff;
    border: 2px solid #eaeef2;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 0.9rem 1rem;
}
.top-locations-wrapper .veshm-location-content h4 {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    color: #022f5d;
    text-transform: capitalize;
}
.top-locations-wrapper .veshm-location-content a {
    text-decoration: none;
}
.top-locations-wrapper .veshm-location-content a:hover h4 {
    color: #017efa !important;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .top-locations-wrapper {
        padding: 40px 0;
    }
    .top-locations-wrapper .veshm-location-figure img {
        height: 130px;
    }
    .top-locations-wrapper .xxx .veshm-location-prt {
        margin-bottom: 20px;
    }
}
