.site-content .content-area
 
 {
    width: auto !important;
}

.info-table__col {
 
      padding-bottom: 2rem !important;
      padding-top: 2rem !important;
}
 .info-table__col:first-child > .info-table__name {
 
 
  
}
.block-info-table .info-table__col:first-child .info-table__content .line {
 
    align-items: baseline !important;
 
}
.info-table__content .line div, .info-table__content .line p {
    margin-bottom: 0.6rem !important;
 
}
.info-table__content .line {
  
    height: 3.8em !important;
}

.block-info-table .info-table__col:first-child .info-table__content .line {
 
    height: 4em  !important;
}
.info-table__name {
  
    padding: 5px;
  
}
.block-info-table .button, .block-info-table .title {
    text-align: center !important;
}
/* ============================================================
   Block: info-table — flawless responsive plan comparison
   - Works for info-table-2, -3, -4, and any higher variant
   - Brand-tunable via CSS variables (top of block)
   - Scoped + !important: conflict-proof against theme/plugin CSS
   - Desktop ≥992px : full table view
   - Mobile/tablet ≤991px : stacked card view (100% responsive)
   ============================================================ */
.block-info-table {

    /* ---- Sizing ---- */
    --it-label-col: 320px;
    --it-plan-col: 230px;
    --it-col-gap: 16px;
    --it-card-radius: 14px;
    --it-card-pad-y: 28px;
    --it-card-pad-x: 22px;

    /* ---- Brand colors (match site exactly) ---- */
    --it-c-text: #122351;          /* navy — plan names, labels, values */
    --it-c-text-muted: #5d6a8a;    /* muted navy — "What's covered?" */
    --it-c-border: #e3e6ef;
    --it-c-border-strong: #c9cfdf;
    --it-c-row-divider: #eef0f6;
    --it-c-card-bg: #ffffff;
    --it-c-tooltip-bg: #122351;
    --it-c-shadow: 0 1px 2px rgba(18, 35, 81, 0.04);
    --it-c-shadow-hover: 0 10px 28px rgba(18, 35, 81, 0.09);

    /* CTA only — green stays here */
    --it-c-cta: #7cb342;
    --it-c-cta-shadow: rgba(124, 179, 66, 0.28);
    --it-c-cta-shadow-hover: rgba(124, 179, 66, 0.36);

    padding: 48px 0 !important;
}

/* ============================================================
   SHARED — info button + tooltip
   ============================================================ */
.block-info-table .it-info {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    margin-left: 8px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--it-c-text-muted) !important;
    cursor: pointer !important;
    transition: color .2s ease, transform .2s ease !important;
}
.block-info-table .it-info:hover,
.block-info-table .it-info:focus-visible {
    color: var(--it-c-text) !important;
    outline: none !important;
    transform: scale(1.08) !important;
}
.block-info-table .it-info__icon {
    width: 18px !important;
    height: 18px !important;
}
.block-info-table .it-info__bubble {
    position: absolute !important;
    bottom: calc(100% + 10px) !important;
    left: 50% !important;
    width: 240px !important;
    max-width: 80vw !important;
    padding: 10px 14px !important;
    background: var(--it-c-tooltip-bg) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-align: left !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(18, 35, 81, 0.22) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(4px) !important;
    transition: opacity .2s ease, transform .2s ease, visibility .2s !important;
    z-index: 20 !important;
}
.block-info-table .it-info__bubble::after {
    content: "" !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: 6px solid transparent !important;
    border-top-color: var(--it-c-tooltip-bg) !important;
}
.block-info-table .it-info:hover .it-info__bubble,
.block-info-table .it-info:focus-visible .it-info__bubble {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* ============================================================
   SHARED — CTA button (the only green element)
   ============================================================ */
.block-info-table .button-list {
    display: flex !important;
    justify-content: center !important;
    margin-top: 36px !important;
}
.block-info-table .button-list .btn {
    display: inline-block !important;
    padding: 14px 32px !important;
    background: var(--it-c-cta) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 12px var(--it-c-cta-shadow) !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}
.block-info-table .button-list .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 22px var(--it-c-cta-shadow-hover) !important;
}

/* ============================================================
   DESKTOP (≥992px) — full table view
   ============================================================ */
@media (min-width: 992px) {

    .block-info-table .info-table-wrap {
        width: 100% !important;
        padding: 4px 0 !important;
    }

    .block-info-table .info-table {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: var(--it-col-gap) !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }

    /* ---- Labels column ---- */
    .block-info-table .info-table .info-table__col:first-child {
        flex: 0 0 var(--it-label-col) !important;
        max-width: var(--it-label-col) !important;
        min-width: 0 !important;
        padding: var(--it-card-pad-y) 8px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }
    .block-info-table .info-table .info-table__col:first-child .info-table__name {
        margin-bottom: 18px !important;
        color: var(--it-c-text-muted) !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.06em !important;
    }
    .block-info-table .info-table .info-table__col:first-child .line {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        padding: 18px 0 !important;
        border-bottom: 1px solid var(--it-c-row-divider) !important;
    }
    .block-info-table .info-table .info-table__col:first-child .line:last-child {
        border-bottom: 0 !important;
    }
    .block-info-table .info-table .info-table__col:first-child .line__label {
        color: var(--it-c-text) !important;
        font-size: 15px !important;
        font-weight: 600 !important;
    }
    .block-info-table .info-table .info-table__col:first-child .line__label p {
        margin: 0 !important;
    }

    /* ---- Plan columns (cards) — all styled identically ---- */
    .block-info-table .info-table .info-table__col:not(:first-child) {
        flex: 0 0 var(--it-plan-col) !important;
        max-width: var(--it-plan-col) !important;
        min-width: 0 !important;
        padding: var(--it-card-pad-y) var(--it-card-pad-x) !important;
        background: var(--it-c-card-bg) !important;
        border: 1px solid var(--it-c-border) !important;
        border-radius: var(--it-card-radius) !important;
        box-shadow: var(--it-c-shadow) !important;
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
    }
    .block-info-table .info-table .info-table__col:not(:first-child):hover {
        transform: translateY(-4px) !important;
        box-shadow: var(--it-c-shadow-hover) !important;
        border-color: var(--it-c-border-strong) !important;
    }

    /* Plan name — same navy for all, including .active */
    .block-info-table .info-table .info-table__col:not(:first-child) .info-table__name,
    .block-info-table .info-table .info-table__col:not(:first-child) .info-table__name.active {
        margin-bottom: 18px !important;
        padding-bottom: 14px !important;
        color: var(--it-c-text) !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        text-align: center !important;
        border-bottom: 1px solid var(--it-c-row-divider) !important;
    }

    /* Plan content lines */
    .block-info-table .info-table .info-table__col:not(:first-child) .line {
        padding: 18px 0 !important;
        color: var(--it-c-text) !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        text-align: center !important;
        border-bottom: 1px solid var(--it-c-row-divider) !important;
    }
    .block-info-table .info-table .info-table__col:not(:first-child) .line:last-child {
        border-bottom: 0 !important;
    }
    .block-info-table .info-table .info-table__col:not(:first-child) .line p {
        margin: 0 !important;
    }
    .block-info-table .info-table .info-table__col:not(:first-child) .line p + p {
        margin-top: 4px !important;
    }

    /* "Optional extra" — plain bold navy, exactly like original */
    .block-info-table .info-table .info-table__col:not(:first-child) .line strong {
        display: inline !important;
        background: transparent !important;
        color: var(--it-c-text) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
}

/* ============================================================
   MOBILE + TABLET (≤991px) — stacked plan cards
   Uses data-title to surface labels inline within each card.
   ============================================================ */
@media (max-width: 991px) {

    .block-info-table {
        padding: 32px 0 !important;
    }
    .block-info-table > .wrapper > .title {
        margin: 0 0 24px !important;
        font-size: 24px !important;
        text-align: center !important;
    }

    .block-info-table .info-table-wrap {
        width: 100% !important;
        overflow: visible !important;
    }

    /* Stack vertically; on tablet (≥600px) we go 2-up for plan cards */
    .block-info-table .info-table {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Hide labels column — data-title carries labels into each card */
    .block-info-table .info-table .info-table__col:first-child {
        display: none !important;
    }

    /* Plan cards */
    .block-info-table .info-table .info-table__col:not(:first-child) {
        width: 100% !important;
        padding: 22px 18px !important;
        background: var(--it-c-card-bg) !important;
        border: 1px solid var(--it-c-border) !important;
        border-radius: var(--it-card-radius) !important;
        box-shadow: var(--it-c-shadow) !important;
    }

    /* Plan header — same navy regardless of active */
    .block-info-table .info-table .info-table__col:not(:first-child) .info-table__name,
    .block-info-table .info-table .info-table__col:not(:first-child) .info-table__name.active {
        margin-bottom: 6px !important;
        padding-bottom: 14px !important;
        color: var(--it-c-text) !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        text-align: center !important;
        border-bottom: 1px solid var(--it-c-row-divider) !important;
    }

    /* Each line → label (data-title) + value side by side */
    .block-info-table .info-table .info-table__col:not(:first-child) .line {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 14px !important;
        padding: 14px 0 !important;
        border-bottom: 1px solid var(--it-c-row-divider) !important;
    }
    .block-info-table .info-table .info-table__col:not(:first-child) .line:last-child {
        border-bottom: 0 !important;
    }
    .block-info-table .info-table .info-table__col:not(:first-child) .line::before {
        content: attr(data-title) !important;
        flex: 1 1 50% !important;
        min-width: 0 !important;
        color: var(--it-c-text) !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        text-align: left !important;
    }
    .block-info-table .info-table .info-table__col:not(:first-child) .line p {
        flex: 1 1 50% !important;
        margin: 0 !important;
        color: var(--it-c-text) !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
        text-align: right !important;
    }
    .block-info-table .info-table .info-table__col:not(:first-child) .line p + p {
        margin-top: 3px !important;
    }

    /* "Optional extra" — plain bold navy on mobile too */
    .block-info-table .info-table .info-table__col:not(:first-child) .line strong {
        display: inline !important;
        background: transparent !important;
        color: var(--it-c-text) !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    /* CTA */
    .block-info-table .button-list {
        margin-top: 24px !important;
    }
    .block-info-table .button-list .btn {
        padding: 12px 26px !important;
        font-size: 15px !important;
    }
}

/* ============================================================
   TABLET PORTRAIT REFINEMENT (600px – 991px)
   Show plan cards in a 2-column grid for better use of space.
   Phones (<600px) stay single-column.
   ============================================================ */
@media (min-width: 600px) and (max-width: 991px) {
    .block-info-table .info-table {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }
    /* If there's only 1 plan (info-table-2), center it as a single card */
    .block-info-table .info-table.info-table-2 {
        display: flex !important;
        flex-direction: column !important;
        max-width: 480px !important;
        margin: 0 auto !important;
    }
}
/* Mobile (≤768px): untouched — defers to theme's existing stacked layout */
 