/* Tipushazak GYIK – klasszikus accordion */
.tipushazak-gyik {
    width: 100%;
     font-family: "Montserrat", Sans-serif;
    box-sizing: border-box;
}

.tipushazak-gyik .gyik-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .25s ease;
}

.tipushazak-gyik .gyik-item.is-open {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.tipushazak-gyik .gyik-kerdes {
    width: 100%;
         font-family: "Montserrat", Sans-serif;
    background: #f9fafc;
    border: 0;
    margin: 0;
    padding: 18px 22px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    line-height: 1.4;
    transition: background .2s ease, color .2s ease;
}

.tipushazak-gyik .gyik-kerdes:hover,
.tipushazak-gyik .gyik-kerdes:focus-visible {
    background: #f8fafc;
    outline: none;
}

.tipushazak-gyik .gyik-kerdes-szoveg {
    flex: 1;
}

.tipushazak-gyik .gyik-ikon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    position: relative;
    transition: transform .25s ease;
}

.tipushazak-gyik .gyik-ikon::before,
.tipushazak-gyik .gyik-ikon::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.tipushazak-gyik .gyik-ikon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.tipushazak-gyik .gyik-ikon::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.tipushazak-gyik .gyik-item.is-open .gyik-kerdes {
    color: #ffffff;
    background: #1e3a8a;
}

.tipushazak-gyik .gyik-item.is-open .gyik-ikon::after {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
}

.tipushazak-gyik .gyik-valasz {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}



.tipushazak-gyik .gyik-valasz-belso {
    padding: 22px 25px;
    color: #374151;
    line-height: 1.6;
}

.tipushazak-gyik .gyik-valasz-belso > *:first-child {
    margin-top: 0;
}

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

.tipushazak-gyik-empty {
    text-align: center;
    padding: 30px;
    color: #777;
}

@media (max-width: 767px) {
    .tipushazak-gyik .gyik-kerdes {
        font-size: 14px;
        padding: 14px 16px;
    }
      .tipushazak-gyik .gyik-valasz-belso {
        padding: 20px 20px;
    }

    .tipushazak-gyik p.wp-block-paragraph {
    font-size: 15px;
}
}
