.faq-section {
    width: 100%;
}

.faq-section .faq-title + .faq-items {
    margin-top: 20px;
}

.faq-section .faq-item {
    border-top: 1px solid var(--grey-border-40);
}

.faq-section .faq-item:last-child {
    border-bottom: 1px solid var(--grey-border-40);
}

.faq-section .faq-item-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 50px;
    cursor: pointer;
}

.faq-section .faq-item-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--red);
    transform: translateY(-50%);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-section .faq-item-title::after {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    left: 9px;
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: var(--red);
    transition: var(--transition);
}

.faq-section .faq-item.active .faq-item-title::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-section .faq-item-content {
    display: none;
    margin-top: 0;
    padding: 0px 50px 20px;
}

/*  Opened */

.faq-section.faq-section--opened .faq-item-title {
    padding-inline: 0;
    cursor: default;
}

.faq-section.faq-section--opened .faq-item-title::before,
.faq-section.faq-section--opened .faq-item-title::after {
    content: none;
}

.faq-section.faq-section--opened .faq-item-content {
    display: block;
    padding-inline: 0;
}

@media (max-width: 767px) {
    .faq-section .faq-item-title,
    .faq-section .faq-item-content {
        padding-right: 0px;
    }
}