/* =========================================
   Beardmonkey FAQ – Accordion Styles
   Author: Flow | Version: 1.0
   ========================================= */

.bmfaq {
    max-width: 100%;
    font-family: inherit;
}

/* ── Rubrik ── */
.bmfaq__heading {
    margin-bottom: 1em;
}

/* ── h3-wrapper runt knappen – nollställ så layouten inte påverkas ── */
.bmfaq__question-wrap {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* ── Enskild rad ── */
.bmfaq__item {
    border: none;
    margin-bottom: 12px;
}


/* ── Fråge-knapp ── */
.bmfaq__question {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 0;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    text-align: left;

    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    color: #7E2326;
}

.bmfaq__question:hover,
.bmfaq__question:focus,
.bmfaq__question:active,
.bmfaq__question:focus-visible {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: #7E2326;
}

/* ── Ikon: + och – ── */
.bmfaq__icon {
    flex-shrink: 0;
    display: inline-block;
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    width: 1em;
    text-align: center;
    color: #7E2326;
}

.bmfaq__icon::before {
    content: '+';
}

.bmfaq__question[aria-expanded="true"] .bmfaq__icon::before {
    content: '–';
}

/* ── Svar – indraget i linje med frågetexten (ikon 16px + gap 12px = 28px) ── */
.bmfaq__answer[hidden] {
    display: none;
}

.bmfaq__answer:not([hidden]) {
    border-bottom: 1px solid #e0e0e0;
}

.bmfaq__answer-inner {
    padding: 12px 0 20px 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #222;
}

.bmfaq__answer-inner p            { margin: 0 0 0.75em; }
.bmfaq__answer-inner p:last-child  { margin-bottom: 0; }
.bmfaq__answer-inner strong,
.bmfaq__answer-inner b             { font-weight: 700; }
.bmfaq__answer-inner a             { text-decoration: underline; color: inherit; }
