.explorez-cba-content {
    --ark-cba-title-font: Inter, Arial, sans-serif;
    --ark-cba-body-font: Inter, Arial, sans-serif;
    --ark-cba-section-title-size: clamp(24px, 2vw, 28px);
    --ark-cba-card-title-size: 20px;
    background: linear-gradient(180deg, #ffffff 0, #f7fbff 100%);
    border: 1px solid rgba(0, 171, 231, .14);
    box-shadow: 0 26px 58px rgba(0, 11, 99, .08);
    color: #000b63;
    font-family: var(--ark-cba-body-font);
    margin: 0 auto 46px;
    max-width: 1140px;
    overflow: hidden;
    padding: clamp(32px, 4vw, 44px);
    position: relative;
}

.explorez-cba-content::after {
    background: radial-gradient(circle, rgba(0, 171, 231, .16), rgba(0, 171, 231, 0) 68%);
    content: "";
    height: 280px;
    position: absolute;
    right: -86px;
    top: -138px;
    width: 390px;
}

.explorez-cba-content-header {
    margin-bottom: 28px;
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.explorez-cba-content-eyebrow {
    align-items: center;
    background: rgba(0, 171, 231, .12);
    border: 1px solid rgba(0, 171, 231, .28);
    border-radius: 999px;
    color: #000b63;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 12px;
    padding: 7px 12px;
    text-transform: uppercase;
}

.explorez-cba-content h2 {
    color: #000b63;
    font-family: var(--ark-cba-title-font);
    font-size: var(--ark-cba-section-title-size);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.18;
    margin: 0 0 10px;
    text-transform: none;
}

.explorez-cba-content-header p {
    color: #364271;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.explorez-cba-content-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
    z-index: 1;
}

.explorez-cba-content-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(0, 11, 99, .1);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 11, 99, .055);
    color: #000b63;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: var(--ark-cba-body-font);
    justify-content: space-between;
    min-height: 188px;
    padding: 19px;
    position: relative;
    text-align: left;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.explorez-cba-content-card-main {
    align-items: flex-start;
    display: flex;
    gap: 15px;
}

.explorez-cba-content-card:focus-visible,
.explorez-cba-auto-trigger:focus-visible {
    outline: 3px solid rgba(0, 171, 231, .48);
    outline-offset: 5px;
}

.explorez-cba-content-icon {
    align-items: center;
    background: linear-gradient(180deg, #f7fcff 0, #eef7ff 100%);
    border: 2px solid rgba(0, 11, 99, .18);
    border-radius: 16px;
    display: inline-flex;
    flex: 0 0 auto;
    height: 74px;
    justify-content: center;
    padding: 13px;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
    width: 74px;
}

.explorez-cba-content-icon img {
    display: block;
    height: 48px;
    object-fit: contain;
    width: 48px;
}

.explorez-cba-content-copy {
    display: grid;
    gap: 7px;
    padding-top: 3px;
}

.explorez-cba-content-label {
    color: #000b63;
    font-family: var(--ark-cba-title-font);
    font-size: var(--ark-cba-card-title-size);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.22;
    text-transform: none;
}

.explorez-cba-content-description {
    color: #516084;
    font-size: 13px;
    line-height: 1.38;
}

.explorez-cba-content-action {
    align-items: center;
    align-self: flex-start;
    background: #000b63;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-family: var(--ark-cba-body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-top: 22px;
    min-height: 34px;
    padding: 0 15px;
    text-transform: uppercase;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.explorez-cba-content-card:hover,
.explorez-cba-content-card:focus-visible {
    border-color: rgba(0, 171, 231, .78);
    box-shadow: 0 24px 46px rgba(0, 11, 99, .12);
    transform: translateY(-3px);
}

.explorez-cba-content-card:hover .explorez-cba-content-icon,
.explorez-cba-content-card:focus-visible .explorez-cba-content-icon {
    background: #ffffff;
    border-color: #00abe7;
    transform: scale(1.03);
}

.explorez-cba-content-card:hover .explorez-cba-content-action,
.explorez-cba-content-card:focus-visible .explorez-cba-content-action {
    background: #00abe7;
    color: #000b63;
    transform: translateX(2px);
}

.explorez-cba-auto-trigger {
    cursor: pointer;
}

body.explorez-cba-modal-open {
    overflow: hidden;
}

.explorez-cba-modal-backdrop[hidden],
.explorez-cba-panel[hidden],
.explorez-cba-preview[hidden] {
    display: none !important;
}

.explorez-cba-modal-backdrop {
    align-items: center;
    background: rgba(0, 8, 58, .58);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 999999;
}

.explorez-cba-modal {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 22px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
    color: #000b63;
    font-family: Inter, Arial, sans-serif;
    max-height: min(760px, calc(100vh - 48px));
    max-width: 780px;
    overflow: hidden;
    width: min(780px, 100%);
}

.explorez-cba-modal-backdrop.is-preview-mode .explorez-cba-modal {
    max-height: calc(100vh - 36px);
    max-width: min(1120px, 100%);
    width: min(1120px, 100%);
}

.explorez-cba-modal-backdrop.is-preview-mode .explorez-cba-panel {
    display: none !important;
}

.explorez-cba-modal-backdrop.is-preview-mode .explorez-cba-preview {
    display: grid !important;
}

.explorez-cba-modal-header {
    align-items: flex-start;
    background: linear-gradient(135deg, #000b63 0, #061579 72%, #00abe7 180%);
    color: #ffffff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 28px 32px;
    position: relative;
}

.explorez-cba-modal-header::before {
    background: #00abe7;
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: 6px;
}

.explorez-cba-modal-kicker {
    color: #9ceaff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    margin: 0 0 9px;
    text-transform: uppercase;
}

.explorez-cba-modal h2,
.explorez-cba-modal p {
    margin-top: 0;
}

.explorez-cba-modal h2 {
    color: #ffffff;
    font-size: clamp(24px, 2.8vw, 31px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 0;
    text-transform: none !important;
}

.explorez-cba-modal-close {
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 26px;
    height: 42px;
    justify-content: center;
    line-height: 1;
    transition: background .18s ease, transform .18s ease;
    width: 42px;
}

.explorez-cba-modal-close:hover,
.explorez-cba-modal-close:focus-visible {
    background: rgba(255, 255, 255, .22);
    transform: scale(1.04);
}

.explorez-cba-modal-body {
    background: linear-gradient(180deg, #ffffff 0, #f7faff 100%);
    max-height: calc(100vh - 210px);
    overflow: auto;
    padding: 30px 32px 34px;
    scrollbar-color: #00abe7 #edf3ff;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
}

.explorez-cba-modal-backdrop.is-preview-mode .explorez-cba-modal-body {
    max-height: calc(100vh - 150px);
    padding-bottom: 24px;
    padding-top: 24px;
}

.explorez-cba-modal-body::-webkit-scrollbar,
.explorez-cba-preview-frame::-webkit-scrollbar {
    width: 10px;
}

.explorez-cba-modal-body::-webkit-scrollbar-track,
.explorez-cba-preview-frame::-webkit-scrollbar-track {
    background: #edf3ff;
    border-radius: 999px;
}

.explorez-cba-modal-body::-webkit-scrollbar-thumb,
.explorez-cba-preview-frame::-webkit-scrollbar-thumb {
    background: #00abe7;
    border: 2px solid #edf3ff;
    border-radius: 999px;
}

.explorez-cba-panel-text {
    color: #4e5a82;
    font-size: 15px;
    margin-bottom: 22px;
}

.explorez-cba-document-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.explorez-cba-document {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 11, 99, .12);
    border-left: 4px solid #00abe7;
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(0, 11, 99, .06);
    display: grid;
    gap: 16px 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    padding: 18px 18px 18px 20px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.explorez-cba-document:hover {
    border-color: rgba(0, 171, 231, .42);
    box-shadow: 0 16px 32px rgba(0, 11, 99, .1);
    transform: translateY(-1px);
}

.explorez-cba-document-copy {
    display: grid;
    gap: 5px;
}

.explorez-cba-document-copy strong {
    color: #000b63;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.explorez-cba-document-copy span {
    color: #525b86;
    font-size: 14px;
    line-height: 1.35;
}

.explorez-cba-document-actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
    justify-content: flex-end;
    min-width: 244px;
}

.explorez-cba-document-type {
    background: rgba(0, 11, 99, .08);
    border-radius: 999px;
    color: #000b63;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 7px 10px;
    text-transform: uppercase;
}

.explorez-cba-print-link {
    align-items: center;
    background: #ff6a00;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(255, 106, 0, .18);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .02em;
    min-height: 38px;
    min-width: 116px;
    padding: 0 17px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
    white-space: nowrap;
}

.explorez-cba-print-link:hover,
.explorez-cba-print-link:focus-visible {
    background: #e85f00;
    box-shadow: 0 12px 24px rgba(255, 106, 0, .24);
    color: #ffffff;
    transform: translateY(-1px);
}

.explorez-cba-preview-link {
    align-items: center;
    background: #eef7ff !important;
    border: 1.5px solid rgba(0, 171, 231, .65);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 11, 99, .06);
    color: #000b63 !important;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .02em;
    min-height: 38px;
    min-width: 112px;
    padding: 0 17px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    white-space: nowrap;
}

.explorez-cba-preview-link:visited {
    color: #000b63 !important;
}

.explorez-cba-preview-link:hover,
.explorez-cba-preview-link:focus-visible {
    background: #00abe7 !important;
    border-color: #00abe7;
    box-shadow: 0 12px 24px rgba(0, 171, 231, .18);
    color: #000b63 !important;
    transform: translateY(-1px);
}

.explorez-cba-preview {
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.explorez-cba-preview-header {
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0, #f7fbff 100%);
    border: 1px solid rgba(0, 171, 231, .18);
    border-radius: 16px;
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 12px 14px;
}

.explorez-cba-preview-back {
    align-items: center;
    background: #eef7ff;
    border: 1.5px solid rgba(0, 171, 231, .55);
    border-radius: 999px;
    color: #000b63;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    min-height: 36px;
    padding: 0 16px;
    box-shadow: 0 8px 18px rgba(0, 11, 99, .06);
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.explorez-cba-preview-back::before {
    content: "\2190";
    font-size: 15px;
    line-height: 1;
}

.explorez-cba-preview-back:hover,
.explorez-cba-preview-back:focus-visible {
    background: #00abe7;
    border-color: #00abe7;
    box-shadow: 0 12px 24px rgba(0, 171, 231, .18);
    color: #000b63;
    transform: translateY(-1px);
}

.explorez-cba-preview h3 {
    color: #000b63;
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 700;
    line-height: 1.18;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.explorez-cba-preview-description {
    display: none !important;
}

.explorez-cba-preview-frame {
    background: #eef6ff;
    border: 2px solid rgba(0, 171, 231, .32);
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .85), 0 16px 34px rgba(0, 11, 99, .08);
    max-height: calc(100vh - 315px);
    min-height: 480px;
    overflow: auto;
    padding: 14px;
    scrollbar-color: #00abe7 #edf3ff;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
}

.explorez-cba-preview-frame iframe {
    border: 0;
    display: block;
    height: min(70vh, 680px);
    width: 100%;
}

.explorez-cba-preview-frame img {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 11, 99, .12);
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.explorez-cba-preview-frame.is-document-preview {
    padding: 0;
}

.explorez-cba-preview-frame.is-image-preview {
    cursor: grab;
}

.explorez-cba-preview-paper {
    color: #000b63;
    padding: 28px;
}

.explorez-cba-preview-paper h4 {
    color: #000b63;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
}

.explorez-cba-preview-paper p {
    color: #364575;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 14px;
}

.explorez-cba-preview-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin: 0;
}

body.page-id-13224 .elementor-13224 {
    --ark-cba-navy: #000b63;
    --ark-cba-cyan: #00abe7;
    --ark-cba-text: #364575;
    --ark-cba-muted: #516084;
    --ark-cba-line: rgba(0, 11, 99, .12);
    color: var(--ark-cba-navy);
    font-family: Inter, Arial, sans-serif;
}

body.page-id-13224 .elementor-13224 .elementor-heading-title {
    color: var(--ark-cba-navy) !important;
    font-family: Inter, Arial, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.18 !important;
    text-transform: none !important;
}

body.page-id-13224 .elementor-13224 .elementor-widget-text-editor,
body.page-id-13224 .elementor-13224 .elementor-widget-text-editor p {
    color: var(--ark-cba-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button),
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) {
    background: linear-gradient(180deg, #ffffff 0, #f8fbff 100%);
    border: 1px solid var(--ark-cba-line);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 11, 99, .07);
    overflow: hidden;
    padding: 10px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button):hover,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button):hover {
    border-color: rgba(0, 171, 231, .46);
    box-shadow: 0 22px 44px rgba(0, 11, 99, .13);
    transform: translateY(-3px);
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button) img,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) img {
    display: block;
    margin: 0 auto;
    object-fit: contain;
    transition: transform .18s ease;
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button):hover img,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button):hover img {
    transform: scale(1.02);
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button) .elementor-heading-title,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) .elementor-heading-title {
    font-size: clamp(18px, 1.6vw, 20px) !important;
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button) .elementor-widget-text-editor,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) .elementor-widget-text-editor {
    color: var(--ark-cba-muted);
    font-weight: 500;
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button) .elementor-button,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) .elementor-button {
    align-items: center;
    background: var(--ark-cba-navy) !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    display: inline-flex;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    justify-content: center;
    letter-spacing: .01em !important;
    min-height: 42px;
    padding: 0 22px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transition: background .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button) .elementor-button:hover,
body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button) .elementor-button:focus-visible,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) .elementor-button:hover,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) .elementor-button:focus-visible {
    background: var(--ark-cba-cyan) !important;
    box-shadow: 0 12px 24px rgba(0, 171, 231, .22);
    color: var(--ark-cba-navy) !important;
    transform: translateY(-1px);
}

body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button) .elementor-button-content-wrapper,
body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) .elementor-button-content-wrapper {
    align-items: center;
    justify-content: center;
}

.ark-cba-page-polished {
    --ark-cba-navy: #000b63;
    --ark-cba-cyan: #00abe7;
    --ark-cba-text: #364575;
    --ark-cba-muted: #516084;
    --ark-cba-line: rgba(0, 11, 99, .12);
    --ark-cba-title-font: Inter, Arial, sans-serif;
    --ark-cba-body-font: Inter, Arial, sans-serif;
    --ark-cba-section-title-size: clamp(24px, 2vw, 28px);
    --ark-cba-card-title-size: 20px;
}

.ark-cba-page-polished .ark-cba-pump-section,
.ark-cba-page-polished .ark-cba-pump-section > .elementor-container,
.ark-cba-page-polished .ark-cba-pump-section > .e-con-inner,
.ark-cba-page-polished .ark-cba-pump-grid {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1140px !important;
    width: min(1140px, calc(100% - 48px)) !important;
}

.ark-cba-page-polished .ark-cba-pump-heading-block,
.ark-cba-page-polished .ark-cba-pump-subtitle-block {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1140px !important;
    width: min(1140px, calc(100vw - 48px)) !important;
}

.ark-cba-page-polished .ark-cba-pump-heading-block {
    margin-bottom: 10px !important;
}

.ark-cba-page-polished .ark-cba-pump-subtitle-block {
    margin-bottom: 24px !important;
}

.ark-cba-page-polished .elementor-widget-heading:has(.ark-cba-pump-title),
.ark-cba-page-polished .elementor-widget-container:has(.ark-cba-pump-title),
.ark-cba-page-polished .elementor-heading-title.ark-cba-pump-title,
.ark-cba-page-polished .ark-cba-pump-title {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1140px !important;
    width: min(1140px, calc(100vw - 48px)) !important;
}

.ark-cba-page-polished .ark-cba-pump-title {
    color: var(--ark-cba-navy) !important;
    font-family: var(--ark-cba-title-font) !important;
    font-size: var(--ark-cba-section-title-size) !important;
    font-weight: 700 !important;
    letter-spacing: -.01em !important;
    line-height: 1.18 !important;
    margin: 0 !important;
    text-transform: none !important;
}

.ark-cba-page-polished .ark-cba-pump-title::after {
    content: none !important;
}

.ark-cba-page-polished .ark-cba-pump-heading-block .elementor-heading-title,
.ark-cba-page-polished .ark-cba-pump-title,
.ark-cba-page-polished .ark-cba-pump-title * {
    font-family: var(--ark-cba-title-font) !important;
}

.ark-cba-page-polished .ark-cba-pump-section .elementor-widget-text-editor,
.ark-cba-page-polished .ark-cba-pump-section .elementor-widget-text-editor p,
.ark-cba-page-polished .ark-cba-pump-subtitle-block,
.ark-cba-page-polished .ark-cba-pump-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1140px !important;
    width: min(1140px, calc(100vw - 48px)) !important;
}

.ark-cba-page-polished .ark-cba-pump-section .elementor-widget-text-editor,
.ark-cba-page-polished .ark-cba-pump-section .elementor-widget-text-editor p,
.ark-cba-page-polished .ark-cba-pump-subtitle {
    color: var(--ark-cba-text) !important;
    font-family: var(--ark-cba-body-font) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    text-transform: none !important;
}

.ark-cba-page-polished .ark-cba-pump-grid {
    gap: 20px !important;
}

.ark-cba-page-polished .ark-cba-pump-card {
    background: linear-gradient(180deg, #ffffff 0, #f8fbff 100%) !important;
    border: 1px solid rgba(0, 11, 99, .1) !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 36px rgba(0, 11, 99, .07) !important;
    min-height: 400px;
    overflow: hidden;
    padding: 16px !important;
    position: relative;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ark-cba-page-polished .ark-cba-pump-card::before {
    background: linear-gradient(180deg, var(--ark-cba-cyan), rgba(0, 171, 231, .1));
    content: "";
    inset: 16px auto 16px 0;
    opacity: .72;
    position: absolute;
    width: 3px;
}

.ark-cba-page-polished .ark-cba-pump-card:hover {
    border-color: rgba(0, 171, 231, .58) !important;
    box-shadow: 0 24px 50px rgba(0, 11, 99, .13) !important;
    transform: translateY(-3px);
}

.ark-cba-page-polished .ark-cba-pump-card img {
    display: block;
    filter: drop-shadow(0 18px 18px rgba(0, 11, 99, .12));
    margin: 0 auto;
    max-height: 198px;
    object-fit: contain;
    transition: transform .18s ease;
}

.ark-cba-page-polished .ark-cba-pump-card:hover img {
    transform: scale(1.035);
}

.ark-cba-page-polished .ark-cba-pump-card-title {
    color: var(--ark-cba-navy) !important;
    font-family: var(--ark-cba-title-font) !important;
    font-size: var(--ark-cba-card-title-size) !important;
    font-weight: 700 !important;
    letter-spacing: -.01em !important;
    line-height: 1.22 !important;
    text-transform: none !important;
}

.ark-cba-page-polished .ark-cba-pump-card-copy,
.ark-cba-page-polished .ark-cba-pump-card-copy p {
    color: var(--ark-cba-muted) !important;
    font-family: var(--ark-cba-body-font) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.ark-cba-page-polished .ark-cba-status-pill {
    background: rgba(0, 171, 231, .12) !important;
    border: 1px solid rgba(0, 171, 231, .8) !important;
    border-radius: 999px !important;
    color: #047ca8 !important;
    font-family: var(--ark-cba-body-font) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    min-height: 28px !important;
    padding: 0 13px !important;
    position: relative;
    text-transform: none !important;
    z-index: 1;
}

.ark-cba-page-polished .ark-cba-pump-action {
    align-items: center;
    background: var(--ark-cba-navy) !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    display: inline-flex;
    font-family: var(--ark-cba-body-font) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    justify-content: center;
    letter-spacing: .01em !important;
    min-height: 44px !important;
    padding: 0 24px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transition: background .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
    width: 100%;
}

.ark-cba-page-polished .ark-cba-pump-action:hover,
.ark-cba-page-polished .ark-cba-pump-action:focus-visible {
    background: var(--ark-cba-cyan) !important;
    box-shadow: 0 12px 24px rgba(0, 171, 231, .22);
    color: var(--ark-cba-navy) !important;
    transform: translateY(-1px);
}

.ark-cba-page-polished .ark-cba-pump-action.is-disabled {
    background: #aeb4c0 !important;
    box-shadow: none;
    color: #ffffff !important;
}

@media (max-width: 900px) {
    .explorez-cba-content-grid {
        grid-template-columns: 1fr;
    }

    .explorez-cba-content-card {
        min-height: auto;
    }

    .explorez-cba-content-card-main {
        align-items: center;
    }

    .ark-cba-page-polished .ark-cba-pump-section,
    .ark-cba-page-polished .ark-cba-pump-section > .elementor-container,
    .ark-cba-page-polished .ark-cba-pump-section > .e-con-inner,
    .ark-cba-page-polished .ark-cba-pump-grid,
    .ark-cba-page-polished .ark-cba-pump-heading-block,
    .ark-cba-page-polished .ark-cba-pump-subtitle-block {
        width: min(100%, calc(100% - 32px)) !important;
    }

    .ark-cba-page-polished .ark-cba-pump-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .explorez-cba-content {
        padding: 24px 20px;
    }

    .explorez-cba-content-card-main {
        align-items: flex-start;
    }

    .explorez-cba-modal-backdrop {
        padding: 14px;
    }

    .explorez-cba-modal-header,
    .explorez-cba-modal-body {
        padding-left: 22px;
        padding-right: 22px;
    }

    .explorez-cba-document {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .explorez-cba-document-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-width: 0;
        width: 100%;
    }

    .explorez-cba-preview-header {
        grid-template-columns: 1fr;
    }

    .explorez-cba-preview-link,
    .explorez-cba-print-link {
        min-width: 0;
        width: 100%;
    }

    .explorez-cba-preview-frame {
        max-height: 55vh;
        min-height: 320px;
        padding: 8px;
    }

    .explorez-cba-preview-frame img {
        width: 100%;
    }

    body.page-id-13224 .elementor-13224 .elementor-widget-wrap:has(.elementor-widget-image):has(.elementor-button),
    body.page-id-13224 .elementor-13224 .e-con:has(.elementor-widget-image):has(.elementor-button) {
        padding: 8px;
    }
}
