.section-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;

    margin: 0 auto;
    font-family: "Plus Jakarta Sans";

    /* két háttérkép: bal felül + jobb alul */
    background-image: url("/img/bal-level.png"), url("/img/jobb-level.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: auto, auto; /* vagy pl. 220px auto, 220px auto */
    padding: 40px 24px; /* hogy ne lógjon rá a szöveg a levelekre */
}
.section-2-div {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin: 12px;
    border-radius: 20px;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(12.1px);
    padding: 20px;
}

.section-2-div h2 {
    color: #2f2f2f;
    font-family: "Plus Jakarta Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 163.271%; /* 58.777px */
}
.section-2-div p {
    color: #2f2f2f;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

/* tablet / kisebb desktop */
@media (max-width: 992px) {
    .section-2 {
        padding: 32px 20px;
        min-height: 65vh;
    }
    .section-2-div h2 {
        font-size: 25px;
        line-height: 40px;
    }
}

/* mobil */
@media (max-width: 600px) {
    .section-2 {
        padding: 24px 16px;
        margin-top: 12px;
        background-size: 180px auto, 180px auto; /* opcionális: kicsit kisebb levelek mobilon */
    }

    .section-2-div {
        padding: 16px 14px;
        margin: 10px 0;
    }

    .tudastar-button-wrapper {
        flex-direction: column; /* gombok egymás alá */
        align-items: stretch;
    }

    .tudastar-button-primary,
    .tudastar-button-secondary {
        max-width: none;
        width: 100%;
    }
}
