/* Layout Base */
.vv-widget-wrapper-88fe2316 {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.vv-widget-wrapper-88fe2316 * {
    box-sizing: border-box;
}

.vv-container-88fe2316 {
    margin: 0 auto;
    width: 100%;
}

/* Top Text */
.vv-top-text-88fe2316 {
    /* spacing handled via settings */
}
.vv-top-eyebrow-88fe2316 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.vv-top-headline-88fe2316 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
}
.vv-top-desc-88fe2316 {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Main Grid Desktop */
.vv-main-grid-88fe2316 {
    display: grid;
    align-items: stretch; /* CRITICAL: makes columns equal height */
}

/* Desktop Ratios */
@media (min-width: 1025px) {
    .vv-ratio-50-50-88fe2316 { grid-template-columns: 1fr 1fr; }
    .vv-ratio-55-45-88fe2316 { grid-template-columns: 55fr 45fr; }
    .vv-ratio-60-40-88fe2316 { grid-template-columns: 60fr 40fr; }
    .vv-ratio-45-55-88fe2316 { grid-template-columns: 45fr 55fr; }
}

/* Left Visual Card */
.vv-visual-card-88fe2316 {
    position: relative;
    display: flex;
    flex-direction: column;
    /* Height 100% implicitly handled by grid align-items: stretch */
    height: 100%; 
}

.vv-map-bg-88fe2316,
.vv-overlays-88fe2316,
.vv-overlay-solid-88fe2316,
.vv-overlay-gradient-88fe2316,
.vv-overlay-vignette-88fe2316,
.vv-map-grid-88fe2316,
.vv-map-route-88fe2316 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vv-map-bg-88fe2316 {
    z-index: 0;
}

.vv-overlays-88fe2316 {
    z-index: 1;
    pointer-events: none;
}
.vv-overlay-solid-88fe2316,
.vv-overlay-gradient-88fe2316,
.vv-overlay-vignette-88fe2316 {
    position: absolute;
}

.vv-map-grid-88fe2316 {
    z-index: 2;
    pointer-events: none;
    background-size: 40px 40px;
}
.vv-map-route-88fe2316 {
    z-index: 3;
    pointer-events: none;
}

/* Visual Card Labels & Content Row */
.vv-visual-top-row-88fe2316 {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.vv-label-left-88fe2316 {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.vv-label-right-88fe2316 {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Map Markers */
.vv-marker-88fe2316 {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
}
.vv-marker-dot-88fe2316 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 6px;
}
.vv-marker-label-88fe2316 {
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Right Benefit Cards */
.vv-cards-col-88fe2316 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vv-bcard-88fe2316 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    flex: 1; /* Allows cards to distribute available height if needed */
}

.vv-bcard-header-88fe2316 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vv-bcard-number-88fe2316 {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
}

.vv-bcard-icon-88fe2316 {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.vv-bcard-icon-88fe2316 svg {
    width: 20px;
    height: 20px;
    transition: fill 0.3s;
}

.vv-bcard-title-88fe2316 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.vv-bcard-desc-88fe2316 {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Tablet (usually 768px - 1024px) */
@media (max-width: 1024px) {
    .vv-main-grid-88fe2316 {
        grid-template-columns: 1fr; /* Stack columns on tablet */
    }
    .vv-top-headline-88fe2316 {
        font-size: 36px;
    }
}

/* Mobile (usually under 768px) */
@media (max-width: 767px) {
    .vv-top-headline-88fe2316 {
        font-size: 30px;
    }
    .vv-top-desc-88fe2316 {
        font-size: 16px;
    }
    .vv-bcard-title-88fe2316 {
        font-size: 20px;
    }
    .vv-bcard-desc-88fe2316 {
        font-size: 14px;
    }
}