.promo-popup-modal .modal-dialog {
    max-width: 820px;
    padding: 15px;
}

.promo-popup-modal .modal-content {
    position: relative;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.promo-popup-modal .modal-body {
    padding: 0;
}

.promo-popup-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    opacity: 1;
}

.promo-popup {
    display: flex;
    align-items: stretch;
    min-height: 380px;
    background: #fff;
}

.promo-popup__image-wrapper {
    flex: 0 0 48%;
    min-height: 380px;
    background: #f6f6f6;
}

.promo-popup__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-popup__body {
    flex: 0 0 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 42px;
}

.promo-popup__title {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.15;
    color: #111;
}

.promo-popup__text {
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.4;
    color: #333;
}

.promo-popup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-transform: lowercase;
    text-decoration: none;
    background: #111;
    color: #fff;
}

@media (max-width: 767px) {
    .promo-popup {
        flex-direction: column;
        min-height: auto;
    }

    .promo-popup__image-wrapper {
        flex: none;
        min-height: 240px;
    }

    .promo-popup__body {
        flex: none;
        padding: 28px 20px 24px;
        text-align: center;
    }

    .promo-popup__title {
        font-size: 26px;
    }

    .promo-popup__text {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .promo-popup__button {
        width: 100%;
    }
}