/* Visa Eligibility Widget — Frontend Styles
   NOTE: Font sizes, padding, spacing, and other values controllable from
   the Elementor Style tab are intentionally NOT hardcoded here (or only
   set as a bare structural fallback) so the widget's responsive controls
   are always the single source of truth and are never overridden by
   this stylesheet's own media queries. */

.vew-wrap {
    width: 100%;
    box-sizing: border-box;
}

.vew-wrap.vew-connector {
    border-left: 2px dotted #5b8fd1;
    padding-left: 24px;
}

.vew-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 32px;
    width: 100%;
}

.vew-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.vew-section-title {
    margin: 0 0 20px;
    line-height: 1.3;
}

.vew-card {
    box-sizing: border-box;
    width: 100%;
}

.vew-intro {
    margin: 0 0 18px;
}

.vew-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.vew-row:last-child {
    margin-bottom: 0;
}

.vew-row-icon {
    flex-shrink: 0;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
}

.vew-row-text {
    flex: 1;
    line-height: 1.5;
    min-width: 0;
    word-wrap: break-word;
}

/* Structural-only mobile fallback: stacks columns on small screens even
   if the widget's own "Columns" control hasn't been changed yet. This
   never sets typography/spacing values, so it can't fight Elementor's
   responsive controls. */
@media (max-width: 767px) {
    .vew-columns {
        grid-template-columns: 1fr;
    }
}
