/* ============================================================
   Gyik2 — FAQ centrált elrendezés (Figma 393:1805)
   ============================================================ */

.gyik2-section {
    background: #fff;
    padding: clamp(60px, 6vw, 96px) 0;
}

/* ---- Fejléc ---- */

.gyik2-header {
    text-align: center;
    margin-bottom: 48px;
}

.gyik2-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.625rem);
    line-height: 1.2;
    color: #000;
    margin-bottom: 8px;
}

.gyik2-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.5;
    color: #000;
    max-width: 850px;
    margin: 0 auto;
}

.gyik2-description p {
    margin-bottom: 0;
}

/* ---- Accordion container ---- */

.gyik2-accordion-wrap {
    background: #f4f4f4;
    padding: 24px;
}

/* ---- Accordion elemek ---- */

.gyik2-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: transparent;
}

.gyik2-accordion .accordion-item:last-child {
    border-bottom: 0;
}

.gyik2-accordion .accordion-button {
    background: transparent;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.4;
    padding: 24px 16px;
    box-shadow: none;
    border-radius: 0 !important;
}

.gyik2-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #000;
    box-shadow: none;
}

.gyik2-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 18px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L9 9L17 1' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform: none;
    transition: transform 0.2s ease;
    margin-left: auto;
}

.gyik2-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.gyik2-accordion .accordion-body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    padding: 4px 16px 24px;
}

.gyik2-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

/* ---- Mobil ---- */
@media (max-width: 576px) {
    .gyik2-accordion-wrap {
        padding: 16px;
    }

    .gyik2-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 18px 12px;
    }

    .gyik2-accordion .accordion-body {
        padding: 4px 12px 18px;
    }
}
