.pd-notification-is-open {
    overflow: hidden;
}

.pd-notification-overlay {
    position: fixed;
    z-index: 2147482500;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 24px;
    background: rgba(13, 18, 24, .72);
}

.pd-notification-modal {
    position: relative;
    width: min(1080px, 94vw);
    max-height: 92vh;
    overflow: auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
    color: #20252c;
    font-family: Arial, Helvetica, sans-serif;
}

.pd-notification-modal__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e8ed;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
    color: #252a31;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.pd-notification-modal__close:hover,
.pd-notification-modal__close:focus-visible {
    border-color: #d50057;
    color: #d50057;
    outline: none;
}

.pd-notification-modal__close .icon-remove {
    line-height: 1;
}

.pd-notification-modal__main {
    display: grid;
    grid-template-columns: minmax(270px, .72fr) minmax(520px, 1.65fr);
    gap: 30px;
    align-items: center;
    padding: 42px 40px 30px;
}

.pd-notification-modal__copy {
    padding: 10px 0 16px;
}

.pd-notification-modal__eyebrow {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: #c70050;
    font-size: 20px;
}

.pd-notification-modal__eyebrow::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: #d50057;
    content: '';
}

.pd-notification-modal h2 {
    margin: 0 0 24px;
    color: #20242a;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
}

.pd-notification-modal__copy p {
    margin: 0 0 30px;
    color: #454c55;
    font-size: 20px;
    line-height: 1.4;
}

.pd-notification-modal__cta {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 9px;
    padding: 0 28px;
    background: #d50057;
    box-shadow: 0 10px 24px rgba(213, 0, 87, .22);
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.pd-notification-modal__cta:hover,
.pd-notification-modal__cta:focus-visible {
    background: #bc004d;
    box-shadow: 0 14px 30px rgba(213, 0, 87, .3);
    outline: 3px solid rgba(213, 0, 87, .18);
    transform: translateY(-1px);
}

.pd-notification-modal__preview {
    overflow: hidden;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    background: #fafbfc;
    box-shadow: 0 14px 38px rgba(34, 44, 54, .13);
}

.pd-notification-modal__preview img {
    display: block;
    width: 100%;
    height: auto;
}

.pd-notification-modal__how {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 24px;
    align-items: center;
    border-radius: 20px 20px 0 0;
    padding: 20px 38px;
    background: linear-gradient(100deg, #d50057 0%, #bd0d50 100%);
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
}

.pd-notification-modal__how > strong {
    font-size: 20px;
}

.pd-notification-modal__how span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-notification-modal__how span + span {
    border-left: 1px solid rgba(255, 255, 255, .45);
    padding-left: 24px;
}

.pd-notification-modal__how b {
    display: inline-grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #cf0054;
    font-size: 18px;
}

.pd-notification-modal--image {
    width: min(600px, 90vw);
}

.pd-notification-modal--image img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 820px) {
    .pd-notification-overlay {
        align-items: flex-start;
        overflow-y: auto;
        padding: 14px;
    }

    .pd-notification-modal {
        margin: auto 0;
        border-radius: 16px;
    }

    .pd-notification-modal__main {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 38px 22px 24px;
    }

    .pd-notification-modal__copy {
        padding-right: 34px;
    }

    .pd-notification-modal__eyebrow {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .pd-notification-modal h2 {
        margin-bottom: 15px;
        font-size: 34px;
    }

    .pd-notification-modal__copy p {
        margin-bottom: 22px;
        font-size: 17px;
    }

    .pd-notification-modal__cta {
        width: 100%;
    }

    .pd-notification-modal__how {
        grid-template-columns: 1fr;
        gap: 14px;
        border-radius: 0;
        padding: 20px 22px;
    }

    .pd-notification-modal__how span + span {
        border-left: 0;
        padding-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pd-notification-modal__cta {
        transition: none;
    }
}
