/*
 * Styles for the FAQordion Accordion (BEM)
 * Version: 1.2
 */

.faqordion {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.faqordion__intro,
.faqordion__conclusion {
    text-align: center;
}

.faqordion__heading {
    margin: 0 0 0.35em;
}

.faqordion__subheading {
    margin: 0;
}

.faqordion__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faqordion__item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.faqordion__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faqordion__toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.faqordion__toggle:hover {
    color: #0073e6;
}

.faqordion__toggle::after {
    content: '+';
    font-family: monospace;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
}

.faqordion__item--active .faqordion__toggle::after {
    content: '-';
}

.faqordion__answer {
    display: none;
    padding-top: 15px;
    color: #555;
    line-height: 1.6;
}

.faqordion__answer p {
    margin-bottom: 1em;
}

.faqordion__answer p:last-child {
    margin-bottom: 0;
}

