.section-6 {
    width: 100%;
    position: relative;
    padding: 60px 16px 80px;
    overflow: hidden; /* mindent, ami kilóg, levágunk */
}

/* HEAD már megvan nálad, csak kiegészítésként: */
.section-6-head {
    width: 100%;
    text-align: center;
    padding: 15px;
    z-index: 1;
}
.section-6-head small {
    display: block;
    text-align: center;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #2f2f2f;
}

/* FŐ SOR: bal oldalt Panka képek, jobb oldalt szöveg + badge-ek */
.panka {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: nowrap;
}

/* BAL OLDALI KÉPBLOKK */
.panka-imgs {
    position: relative;
    flex: 0 0 40%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
}

/* zöld, elmosott kör a képek mögött */
.panka-imgs::before {
    content: "";
    position: absolute;
    inset: auto 50% 0; /* alul középen ül */
    transform: translateX(-50%);
    width: 140%;
    aspect-ratio: 1 / 1;
    border-radius: 893px;
    background: rgba(70, 130, 46, 0.21);
    z-index: 0;
}

/* képek egymásra csúsztatva */
.panka-imgs img {
    position: absolute;
    max-width: 60%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    z-index: 1;
}

/* alap “fő” kép (panka1) – középen, kicsit lejjebb */
.panka-imgs img:nth-child(1) {
    left: 35%;
    top: -2%;
    transform: translateX(-50%);
}

/* panka2 – kicsit balra, kicsit feljebb, a két kép között */
.panka-imgs img:nth-child(2) {
    left: -23%;
    top: 55%;
    max-width: 50%;
    z-index: 100;
}

/* panka3 – jobbra lent, részben fedve a fő képet */
.panka-imgs img:nth-child(3) {
    right: 115px;
    bottom: 10%;
    max-width: 50%;
}

/* JOBB OLDALI SZÖVEGBLOKK */
.panka-texts {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

/* Név + leírás */
.panka-name {
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 700;
    color: #083428;
}

.panka-desc {
    font-size: 1rem;
    font-weight: 500;
    color: #2f2f2f;
    line-height: 1.5;
}

/* Felsorolás: zöld badge-ek oszlopban */
.panka-felsorolas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px; /* sor x oszlop gap */
    margin-top: 12px;
}

/* egy zöld kártya – Figma alapján */
.panka-felsorolas > div {
    display: flex;
    height: 81px;
    padding: 10px 20px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    align-self: stretch;

    border-radius: 25px;
    background: rgba(46, 109, 16, 0.87);

    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ikon méret */
.panka-felsorolas > div img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* footer szöveg alul */
.panka-footer {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2f2f2f;
}
.panka-mobile {
    display: none;
}
/* ===== Reszponzív finomítások ===== */

@media (max-width: 1024px) {
    .panka {
        display: none;
    }
    .panka-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* padding: 10px; */
        gap: 20px;
    }
    .panka-texts-mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
        font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    }
    .panka-mobile .panka-texts-mobile {
        width: 100%;
        padding-inline: 16px; /* belső padding, nem margin a gyerekeken */
        box-sizing: border-box;
    }
    .panka-imgs-mobile-2 {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .panka-imgs-mobile-2 img {
        width: 48%;
        border-radius: 15px;
        margin: 0 10px;
        z-index: 200;
    }
    .panka-imgs-mobile {
        width: 100%;
        z-index: 200;
    }
    .panka-imgs-mobile img {
        width: 60%;
        border-radius: 15px;
        margin-left: 25px;
        z-index: 200;
    }
    .panka-name-mobile {
        font-size: 22px;
        font-weight: 700;
        color: #083428;
        margin-left: 25px;
    }
    .panka-desc-mobile {
        position: relative;
        padding: 25px;
        text-align: left;
    }
    .panka-desc-mobile::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -40px;
        transform: translateX(-50%);
        width: 130%;
        max-width: 480px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        background: rgba(70, 130, 46, 0.21);
        z-index: -1;
    }
    .panka-mobile .panka-felsorolas {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 18px;
        margin-top: 16px;
    }

    .panka-mobile .panka-felsorolas > div {
        text-align: left;
        width: 100%;
        margin: 0; /* NINCS oldal-margin */
        padding: 10px 16px; /* beljebb húzott padding */
        box-sizing: border-box; /* biztosan nem lóg ki */
    }
}

@media (max-width: 968px) {
    .seasons-logo2 {
        display: none;
    }
    .section-6-head h2 {
        font-size: 2rem;
    }
}

.section-6-head {
    width: 100%;
    text-align: center;
    padding: 15px;
    z-index: 9999;
}
.section-6-head h2 {
    margin: 0 auto;
    max-width: 900px;
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 700;

    /* fluid méret: kb 28px–48px között skálázódik */
    font-size: clamp(1.75rem, 3vw, 3rem);
    line-height: 1.2;

    color: #083428;
}
.section-6-head small {
    display: block;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 47px;
    color: #2f2f2f;
}
