
/* =========================================================
   ZSONGODA – PLAKÁTNAPTÁR 2026–27
   02 – PROBLÉMA / FELISMERÉS
   ========================================================= */

.zn26-problem,
.zn26-problem * {
    box-sizing: border-box;
}

.zn26-problem {
    --green: #214E3B;
    --green-dark: #173B2D;
    --eucalyptus: #819C8D;
    --sage: #B8C7BB;
    --cream: #F7F5EF;
    --text: #555555;
    --line: rgba(33,78,59,.14);

    position: relative;
    overflow: hidden;

    width: 100%;

    padding: 105px 0 100px;

    background: var(--cream);

    font-family: Aptos, "Segoe UI", Arial, sans-serif;
    color: var(--text);
}


/* =========================================================
   FEJLÉC
   ========================================================= */

.zn26-problem-heading {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto 72px;

    text-align: center;
}


.zn26-problem-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    margin-bottom: 20px;

    color: var(--green);

    font-size: 14px;
    font-weight: 750;

    letter-spacing: .09em;
    text-transform: uppercase;
}


/* kis levéljel */

.zn26-problem-leaf {
    position: relative;

    width: 17px;
    height: 21px;
}

.zn26-problem-leaf::before,
.zn26-problem-leaf::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 13px;

    border: 1.5px solid var(--eucalyptus);

    border-radius: 80% 10% 80% 10%;
}

.zn26-problem-leaf::before {
    left: 1px;
    top: 6px;

    transform: rotate(-35deg);
}

.zn26-problem-leaf::after {
    right: 1px;
    top: 1px;

    transform: rotate(35deg);
}


.zn26-problem-title {
    margin: 0;

    color: var(--green-dark);

    font-size: clamp(37px, 3.4vw, 54px);
    line-height: 1.12;
    letter-spacing: -.025em;

    font-weight: 580;
}


.zn26-problem-title span {
    color: var(--eucalyptus);
}


/* =========================================================
   4 PROBLÉMA
   ========================================================= */

.zn26-problem-grid {
    width: min(1360px, calc(100% - 70px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.zn26-problem-item {
    position: relative;

    min-height: 185px;

    padding: 5px 34px 15px;

    display: flex;
    align-items: flex-start;
    gap: 21px;
}


/* függőleges elválasztók */

.zn26-problem-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 3px;
    right: 0;

    width: 1px;
    height: 145px;

    background: var(--line);
}


/* ikon */

.zn26-problem-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    color: var(--eucalyptus);
}


.zn26-problem-icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* szöveg */

.zn26-problem-copy {
    padding-top: 3px;
}


.zn26-problem-copy p {
    margin: 0;

    color: var(--text);

    font-size: 17px;
    line-height: 1.48;

    font-weight: 500;
}


/* =========================================================
   ÁTVEZETŐ ÜZENET
   ========================================================= */

.zn26-problem-answer {
    width: min(1000px, calc(100% - 40px));

    margin: 55px auto 0;
    padding-top: 47px;

    border-top: 1px solid var(--line);

    text-align: center;
}


.zn26-problem-answer p {
    margin: 0;

    color: var(--green-dark);

    font-size: clamp(23px, 2vw, 30px);
    line-height: 1.45;

    font-weight: 500;
}


.zn26-problem-answer strong {
    color: var(--green);
    font-weight: 720;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .zn26-problem {
        padding: 95px 0 85px;
    }

    .zn26-problem-grid {
        width: min(820px, calc(100% - 50px));

        grid-template-columns: repeat(2, 1fr);

        row-gap: 45px;
    }

    .zn26-problem-item {
        min-height: 145px;

        padding: 0 30px;
    }

    .zn26-problem-item:nth-child(2)::after {
        display: none;
    }

    .zn26-problem-item:nth-child(3),
    .zn26-problem-item:nth-child(4) {
        padding-top: 10px;
    }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 767px) {

    .zn26-problem {
        padding: 75px 0 70px;
    }

    .zn26-problem-heading {
        width: calc(100% - 36px);

        margin-bottom: 50px;
    }

    .zn26-problem-kicker {
        margin-bottom: 15px;

        font-size: 12px;
    }

    .zn26-problem-title {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.12;
    }

    .zn26-problem-grid {
        width: calc(100% - 36px);

        display: block;
    }

    .zn26-problem-item {
        min-height: 0;

        padding: 25px 0;

        gap: 19px;

        border-bottom: 1px solid var(--line);
    }

    .zn26-problem-item:first-child {
        padding-top: 0;
    }

    .zn26-problem-item:last-child {
        border-bottom: 0;
    }

    .zn26-problem-item::after {
        display: none !important;
    }

    .zn26-problem-icon {
        flex: 0 0 50px;

        width: 50px;
        height: 50px;
    }

    .zn26-problem-copy p {
        font-size: 16px;
        line-height: 1.48;
    }

    .zn26-problem-answer {
        width: calc(100% - 36px);

        margin-top: 35px;
        padding-top: 35px;
    }

    .zn26-problem-answer p {
        font-size: 22px;
    }

}
