/**
 * GYIK modul
 */

.gyik-container {
    --gyik-szin: #06b8ae;
    --gyik-sotet: #007a74;
    width: 100%;
    margin: 20px 0;
    font-family: "Montserrat", Sans-serif;
}

.gyik-cim {
    margin: 0 0 25px;
    color: var(--gyik-sotet);
    font-family: "Montserrat", Sans-serif;
    font-size: 25px;
    font-weight: 700;
}

.gyik-item {
    margin-bottom: 10px;
}

.gyik-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 15px 25px;
    border: 1px solid var(--gyik-szin);
    border-radius: 40px;
    background-color: transparent;
    color: #666666;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    white-space: normal;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gyik-header:hover,
.gyik-header:focus,
.gyik-item.active .gyik-header {
    border-color: var(--gyik-szin);
    background-color: var(--gyik-szin);
    color: #ffffff;
}

.gyik-header:focus-visible {
    outline: 2px solid var(--gyik-sotet);
    outline-offset: 2px;
}

.gyik-item.active .gyik-kerdes {
    font-weight: 600;
}

/* Plusz / mínusz ikon */
.gyik-icon {
    position: relative;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.gyik-icon::before,
.gyik-icon::after {
    content: "";
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gyik-icon::before {
    width: 14px;
    height: 2px;
    top: 6px;
    left: 0;
}

.gyik-icon::after {
    width: 2px;
    height: 14px;
    top: 0;
    left: 6px;
}

.gyik-item.active .gyik-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Válasz: magasság animáció grid-del, így nincs max-height korlát */
.gyik-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.gyik-item.active .gyik-content {
    grid-template-rows: 1fr;
}

.gyik-valasz {
    min-height: 0;
    overflow: hidden;
    padding: 0 25px;
    border-radius: 20px;
    background-color: #f9f9f98a;
    color: #2d2d2d;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    visibility: hidden;
    transition: padding 0.35s ease, margin 0.35s ease, visibility 0.35s;
}

.gyik-item.active .gyik-valasz {
    margin-top: 10px;
    padding: 25px;
    visibility: visible;
}

.gyik-valasz p {
    margin: 0 0 15px;
}

.gyik-valasz > :last-child {
    margin-bottom: 0;
}

.gyik-valasz ul,
.gyik-valasz ol {
    margin: 0 0 15px;
    padding-left: 20px;
}

.gyik-valasz a {
    color: var(--gyik-sotet);
    font-weight: 600;
}

.gyik-valasz strong {
    font-weight: 600;
}

/* Reszponzív beállítások */
@media screen and (max-width: 768px) {
    .gyik-header {
        padding: 12px 18px;
        border-radius: 25px;
        font-size: 14px;
        line-height: 22px;
    }

    .gyik-item.active .gyik-valasz {
        padding: 15px;
    }

    .gyik-valasz {
        font-size: 14px;
        line-height: 25px;
    }
}
