.questions-box {
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 40px;
}

.questions-box__img {
    aspect-ratio: 362 / 188;
    max-width: 362px;
    width: 100%;
    height: 188px;
    flex: 0 0 362px;
    align-self: flex-start;
    border-radius: 14px;
    object-fit: cover;
}

.questions-box__content_wrapper {
    position: relative;
}

.questions-box__content_wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: calc(100% - 40px);
    height: 48px;
    background: linear-gradient(0deg, #FFFFFF 26.45%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    transition: opacity .4s ease;
    opacity: 1;
}

.questions-box__content_wrapper.is-at-bottom::after {
    opacity: 0;
}

.questions-box__content {
    display: flex;
    flex-direction: column;
    height: 188px;
    overflow-y: auto;
    padding-right: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto; 
}

.questions-box__content::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.questions-box__fake-scrollbar {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: var(--border);
    border-radius: 999px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.questions-box__content_wrapper.is-scrollable .questions-box__fake-scrollbar {
    opacity: 1;
    pointer-events: auto;
}

.questions-box__fake-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 79px;
    background-color: var(--orange);
    border-radius: 999px;
    transform: translateY(0);
    touch-action: none;
}

.questions-box__content {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-gray);
    line-height: 1.2;
}

.questions-box__content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 16px 0;
    color: var(--text);
    line-height: 1.2;
}

.questions-box__content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 16px 0;
    color: var(--text);
    line-height: 1.2;
}

.questions-box__content .kosten-liste li {
    display: flex;
    gap: 14px;
}

.questions-box__content .kosten-liste li .kosten-icon {
    width: 24px;
}

.questions-box--plain {
    display: block;
}

.questions-box--plain .questions-box__content_wrapper::after,
.questions-box--plain .questions-box__fake-scrollbar {
    display: none;
}

.questions-box--plain .questions-box__content {
    height: auto;
    overflow: visible;
    padding-right: 0;
}

@media (max-width: 768px) {
    .questions-box {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .questions-box__img {
        max-width: none;
        height: auto;
        flex: 0 0 auto;
    }

    .questions-box__content {
        height: 320px;
        padding-right: 8px;
    }

    .questions-box__content_wrapper::after {
        width: calc(100% - 8px);
        height: 91px;
    }

    .questions-box__content {
        font-size: 16px;
    }

    .questions-box__content h2 {
        font-size: 24px;
    }

    .questions-box__content h3 {
        font-size: 20px;
    }
}
