/* ===================================
   Block: FAQ (inner-faq)
   =================================== */
#dd-inner-faq {
    background-color: var(--bckg);
    float: left;
    width: 100%;
    padding: 80px 0;
}

.inner-faq-wrap {
    align-items: flex-start;
    gap: 60px;
}

/* Left column */
.inner-faq-content {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
}

.inner-faq-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 62px;
    color: var(--main);
    margin: 0 0 40px;
}

/* FAQ list */
.inner-faq-list {
    display: flex;
    flex-direction: column;
}

.inner-faq-holder {
    border-top: 1px solid #BCD3FF;
}

.inner-faq-holder:last-child {
    border-bottom: 1px solid #BCD3FF;
}

.inner-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    cursor: pointer;
}

.inner-faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.inner-faq-number {
    font-size: 14px;
    font-weight: 400;
    color: var(--main);
    opacity: 0.5;
    flex-shrink: 0;
    min-width: 24px;
}

.inner-faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--main);
    margin: 0;
}

.inner-faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.inner-faq-holder.active .inner-faq-arrow {
    transform: rotate(180deg);
}

/* Answer */
.inner-faq-answer {
    display: none;
    padding: 0 0 20px 40px;
}

.inner-faq-answer p {
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
    color: var(--main);
    margin: 0;
}

/* Right column — image */
.inner-faq-image-wrap {
    width: calc(50% - 30px);
    overflow: hidden;
}

.inner-faq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   Responsive
   =================================== */
@media screen and (max-width: 1400px) {
    .inner-faq-title {
        font-size: 36px;
        line-height: 52px;
    }
}

@media screen and (max-width: 1199px) {
    .inner-faq-title {
        font-size: 30px;
        line-height: 44px;
    }

    .inner-faq-question h3 {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 991px) {
    .inner-faq-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .inner-faq-content,
    .inner-faq-image-wrap {
        width: 100%;
    }

    .inner-faq-image-wrap {
        height: 300px;
    }
}

@media screen and (max-width: 767px) {
    #dd-inner-faq {
        padding: 60px 0;
    }

    .inner-faq-title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 28px;
    }

    .inner-faq-image-wrap {
        height: 240px;
    }
}
