.promars-ap-ae-help {
    clear: both;
    margin: 16px 0 4px;
}

.promars-ap-ae-open {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid #d9dde2;
    border-radius: 7px;
    background: #fff;
    color: #20252b;
    font: inherit;
    font-size: 14px;
    line-height: 1.3;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.promars-ap-ae-open:hover,
.promars-ap-ae-open:focus-visible {
    border-color: #f58220;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    outline: none;
}

.promars-ap-ae-icon {
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    border-radius: 50%;
    background: #f58220;
    color: #fff;
    font-weight: 700;
    font-style: normal;
}

.promars-ap-ae-modal[hidden] { display: none !important; }
.promars-ap-ae-lock { overflow: hidden; }

.promars-ap-ae-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .18s ease;
}

.promars-ap-ae-modal.is-open { opacity: 1; }

.promars-ap-ae-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 17, 22, .72);
    backdrop-filter: blur(2px);
}

.promars-ap-ae-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 28px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    transform: translateY(8px) scale(.985);
    transition: transform .18s ease;
    outline: none;
}

.promars-ap-ae-modal.is-open .promars-ap-ae-dialog {
    transform: translateY(0) scale(1);
}

.promars-ap-ae-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f3f5;
    color: #222;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.promars-ap-ae-copy { padding-right: 35px; }
.promars-ap-ae-kicker {
    color: #f58220;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.promars-ap-ae-copy h2 { margin: 4px 0 12px; font-size: clamp(23px, 3vw, 32px); }
.promars-ap-ae-copy p { margin: 5px 0; color: #41474e; }
.promars-ap-ae-dialog img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
    border: 1px solid #eceff2;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .promars-ap-ae-modal { padding: 10px; }
    .promars-ap-ae-dialog { padding: 20px 16px 16px; }
    .promars-ap-ae-copy { padding-right: 28px; }
}

