main {
    isolation: isolate;
    background: url(../images/faq/promo.webp) top center / 100% auto no-repeat;
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        aspect-ratio: 192 / 70;
        pointer-events: none;
        background: linear-gradient(0deg, #1C1D31 0%, rgba(28, 29, 49, 0.906249) 19.91%, rgba(28, 29, 49, 0.761946) 36.54%, rgba(28, 29, 49, 0) 100%) left bottom / 100% 60px no-repeat;
        z-index: -1;
    }
}
.promo {
    display: flex;
    flex-direction: column;
    padding-top: 201px;
    .tag {
        margin-bottom: 20px;
    }
    h1 {
        margin-block: -7px 7px;
    }
    p {
        font-size: 24px;
        line-height: 137%;
    }
}
.faq {
    margin-top: -44px;
    .items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        > div {
            display: flex;
            flex-direction: column;
            border-right: 1px solid oklch(64.663% 0.03561 289.155 / 0.5);
        }
        .quest {
            position: relative;
            display: grid;
            grid-template-rows: max-content 0fr;
            padding: 38px 40px 40px;
            background-color: rgba(141, 139, 163, 0.1);
            border: 1px solid rgba(0, 0, 0, 0);
            border-right: none;
            transition: grid-template-rows .3s linear, background-color .3s linear, border-color .3s linear;
            .head {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 20px;
                font: 700 24px"Mazzard";
                text-transform: uppercase;
                .btn {
                    --width: 4px;
                    width: 40px;
                    height: 40px;
                    flex-shrink: 0;
                    min-height: initial;
                    background-color: #1C1D31;
                    &::before {
                        content: '\e901';
                        font: 20px icon;
                        transition: transform .3s linear;
                    }
                }
            }
            .content {
                overflow: hidden;
                padding-right: 55px;
                > *:first-child {
                    margin-top: 7px;
                }
                * {
                    font-size: 16px;
                    color: #E6E9F8;
                    line-height: 120%;
                }
                ul {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    list-style: disc;
                    padding-left: 27px;
                }
            }
            &.open {
                grid-template-rows: max-content 1fr;
                background-color: oklch(64.663% 0.03561 289.155 / 0.2);
                border-color: rgba(141, 139, 163, 0.5);
                .head .btn {
                    --color: transparent;
                    background-color: #FEFEFF;
                    color: #2E2B3E;
                    &::before {
                        transform: rotate(135deg);
                    }
                }
            }
        }
    }
    .box {
        margin-block: 72px 43px;
        p {
            max-width: 50%;
            font-size: 24px;
            line-height: 120%;
        }
    }
}
@media screen and (max-width: 1840px) {
    .promo {
        padding-top: 134px;
        .tag {
            margin-bottom: 12px;
        }
        h1 {
            margin-block: -6px 6px;
        }
        p {
            font-size: 16px;
        }
    }
    .faq {
        margin-top: -29px;
        .items .quest {
            padding: 28px 30px 30px;
            .head {
                font-size: 20px;
            }
        }
        .box {
            margin-block: 39px 32px;
            p {
                max-width: initial;
                font-size: 16px;
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    .promo {
        padding-top: 104px;
        h1 {
            margin-block: -3px 4px;
        }
    }
    .faq {
        margin-top: -43px;
        .items {
            grid-template-columns: 1fr;
            .quest {
                padding: 18px 20px 20px;
            }
        }
        .box {
            margin-block: 36px 21px;
        }
    }
}
@media screen and (max-width: 767px) {
    main {
        background: url(../images/faq/promo2.webp) top left / max(375px, 100%) auto no-repeat;
        &::before {
            min-height: 360px;
            aspect-ratio: 375 / 360;
        }
    }
    .promo {
        padding-top: 171px;
        h1 {
            margin-block: -3px 4px;
        }
    }
    .faq {
        margin-top: -41px;
        .items .quest {
            padding: 8px 10px 10px;
            .head {
                font-size: 16px;
            }
        }
        .box {
            margin-block: 38px 23px;
        }
    }
}
@media (hover: hover) {
    .quest .btn:hover {
        color: #FEFEFF;
    }
}