/* ============================================
   pytania — FAQ dwukolumnowy
   ============================================ */

.pytania { background: #fff; }

/* ---- Lewa kolumna ---- */
.pytania__eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: #28538E; display: flex; align-items: center; gap: 10px;
}
.pytania__eyebrow::before {
    content: ""; display: inline-block; width: 24px; height: 1px; background: #28538E;
}
.pytania__tytul {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; color: #0A0A0A;
}
.pytania__opis {
    font-size: 0.95rem; color: #6B6B6B; line-height: 1.65; margin: 0;
}

/* ---- Accordion ---- */
.pytania__accordion {
    border-top: 1px solid #E4E4E4;
}

.pytania__item {
    border-bottom: 1px solid #E4E4E4;
}

/* Przycisk pytania */
.pytania__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.pytania__btn-text {
    font-size: 1rem;
    font-weight: 400;
    color: #0A0A0A;
    line-height: 1.4;
    flex: 1;
}

/* Ikona — szare kółko z chevron w dół */
.pytania__btn-ico {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #EFF1F4;
    border: 1px solid #E4E4E4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6B6B6B;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.pytania__btn-ico svg {
    transition: transform 0.25s ease;
}

/* Aktywny stan — granatowe kółko, chevron obrócony */
.pytania__btn--aktywny .pytania__btn-ico {
    background: #28538E;
    border-color: #28538E;
    color: white;
}
.pytania__btn--aktywny .pytania__btn-ico svg {
    transform: rotate(180deg);
}
.pytania__btn--aktywny .pytania__btn-text {
    font-weight: 500;
}

/* Ciało odpowiedzi — animacja przez max-height */
.pytania__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.pytania__body--aktywna {
    /* max-height ustawiane przez JS */
}

.pytania__body-inner {
    padding-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A5568;
}
.pytania__body-inner p { margin: 0; }
.pytania__body-inner p + p { margin-top: 0.75rem; }

/* ---- Responsywność ---- */
@media (max-width: 991.98px) {
    .pytania__tytul { font-size: 1.8rem; }
}
@media (max-width: 767.98px) {
    .pytania__btn-text { font-size: 0.92rem; }
    .pytania__btn { padding: 16px 0; }
}
