/* ===== FAQ SECTION ===== */
.faq-brss {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
}

.faq-brss__cat {
    max-width: 1568px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    width: 100%;
    gap: 2rem;
}

.faq-brss__cat-title {
    font-size: 2rem;
    line-height: 1.2;
    grid-column: span 10 / span 10;
}

.faq-brss__cat-items {
    grid-column: span 10 / span 10;
}

.faq-brss__item {
    border-top: 1px dashed rgba(29, 29, 31, 0.5);
    cursor: pointer;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.faq-brss__item:last-child {
    border-bottom: 1px dashed rgba(29, 29, 31, 0.5);
}

.faq-brss__item-question {
    font-size: 1.125rem;
    line-height: 1.75rem;
    position: relative;
    padding-right: 3rem;
}

.faq-brss__item-question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 2rem;
    height: 2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scaleY(-1);
    background-image: url("data:image/svg+xml, %3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 13L22 19L10 19L16 13Z' fill='%231D1D1F'/%3E%3C/svg%3E");
}

.faq-brss__item-answer {
    height: 0;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 768px;
}

.faq-brss__item:focus {
    outline: none;
}

.faq-brss__item.faq-brss__item_opened .faq-brss__item-answer {
    height: auto;
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.faq-brss__item.faq-brss__item_opened .faq-brss__item-question::after {
    transform: scaleY(1);
}

/* Responsive — lg breakpoint (1024px) */
@media(min-width: 1024px) {
    .faq-brss {
        row-gap: 8rem;
    }

    .faq-brss__cat-title {
        font-size: 3rem;
        line-height: 3rem;
        grid-column: span 4 / span 4;
    }

    .faq-brss__cat-items {
        grid-column: span 6 / span 6;
    }

    .faq-brss__item-question {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}
