.faq-block {
    margin-top: 40px;
}

.faq-block h2 {
    margin-top: 20px;
    border-left: 4px solid #E8E8E8;
    padding-left: 10px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #222;
    font-size: 42px;
}

.faq-section {
    margin: 3rem 0;
    background: #f8f8f8;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
}

.faq-question {
    position: relative;
    padding: 14px 14px 14px 40px;
    margin: 0;
    cursor: pointer;
    user-select: none;
    font-size: rem;
    font-weight: 600;
    border-left: none;
    color: #666 !important;
}

/* Supprime le border-top en doublon sur tous les items sauf le premier */
.faq-item .faq-question  {
    border-bottom: 1px solid #E8E8E8;
}

.faq-item:last-child .faq-question  {
    border-bottom: none;
}

.faq-item:last-child.is-open .faq-question {
    border-bottom: 1px solid #E8E8E8;
}

/* Barre horizontale — toujours visible */
.faq-question::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    width: 14px;
    height: 2px;
    background: currentColor;
}

/* Barre verticale — forme le + */
.faq-question::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    width: 2px;
    height: 14px;
    background: currentColor;
    transition: opacity 0.25s ease;
}

/* Ouvert : retire la barre verticale → devient un − */
.faq-item.is-open .faq-question::before {
    opacity: 0;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 14px 0 40px;
    transition: grid-template-rows 0.35s ease, padding 0.35s ease;
}

.faq-answer {
    padding: 0 14px 0 0;
    transform: translateX(14px);
    width: calc(100% - 28px);
    transition: grid-template-rows 0.35s ease, padding 0.35s ease;
    border: none;
}

.faq-answer-inner {
    display: grid;
    overflow: hidden;
    min-height: 0;
    row-gap: 20px;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
    padding: 14px 0;
    border-bottom: 1px solid #E8E8E8;
}

.faq-item:last-child.is-open .faq-answer {
    border-bottom: none;
}
