/* ============================================================
   Gyik — GYIK / FAQ komponens stílusok
   ============================================================ */

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

/* ---- Bal oszlop ---- */

.gyik-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5.5vw, 5.54rem);
    line-height: 1.2;
    color: #000;
    margin-bottom: 16px;
}

.gyik-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #000;
    margin-bottom: 32px;
}

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

.gyik-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #000;
    padding: 8px 24px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 1.575rem;
    color: #000;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.gyik-btn:hover,
.gyik-btn:focus {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.gyik-btn:hover i{
    color: #fff !important;
}

/* ---- Jobb oszlop — accordion ---- */

.gyik-right {
    padding-left: clamp(24px, 4vw, 64px);
}

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


.gyik-accordion .accordion-button {
    background: transparent;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 24px 16px;
    box-shadow: none;
    border-radius: 0 !important;
}

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

.gyik-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;
}

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

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

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

/* ---- Tablet ---- */
@media (max-width: 992px) {
    .gyik-left {
        margin-bottom: 40px;
    }

    .gyik-right {
        padding-left: 0;
    }
}

/* ---- Mobil ---- */
@media (max-width: 576px) {
    .gyik-btn {
        font-size: 1.25rem;
    }

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

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