@charset "utf-8";
/* CSS Document */

.bc-faq {
    border: 1px solid #d9d4cd;
    border-radius: 18px;
    background: rgba(255,255,255,0.8);
    padding: 22px;
}

.bc-faq__heading {
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6f6a63;
}

.bc-faq__list {
    margin: 0;
    padding: 0;
}

.bc-faq__item {
    margin: 0;
    padding: 0;
}

.bc-faq__item + .bc-faq__item {
    border-top: 1px solid #d9d4cd;
}

.bc-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: 18px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    color: #1d1d1d;
}

.bc-faq__question-text {
    flex: 1 1 auto;
   font-size: 1.2em;
    font-weight: 600;
    line-height: 1.45;
}

.bc-faq__icon {
    position: relative;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
}

.bc-faq__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #444;
    border-bottom: 2px solid #444;
    transform: translate(-50%, -60%) rotate(45deg);
    transition: transform 0.25s ease;
}



.bc-faq__icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}



.bc-faq__question[aria-expanded="true"] .bc-faq__icon::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.bc-faq__question[aria-expanded="true"] .bc-faq__icon::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.bc-faq__answer {
    padding: 0 0 18px;
}

.bc-faq__answer-inner {
    color: #4c4c4c;
    font-size: 16px;
    line-height: 1.8;
}

.bc-faq__answer-inner p {
    margin: 0 0 1em;
}

.bc-faq__answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .bc-faq {
        padding: 16px;
        border-radius: 14px;
    }

    .bc-faq__heading {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .bc-faq__question {
        gap: 12px;
        padding: 16px 0;
    }

    .bc-faq__question-text {
        font-size: 16px;
        line-height: 1.4;
    }

    .bc-faq__answer-inner {
        font-size: 15px;
        line-height: 1.7;
    }
}