/* Miért mi - egymás alatti lista, számozott ikonnal */
.miert-mi-lista {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

.miert-mi-lista *,
.miert-mi-lista *::before,
.miert-mi-lista *::after {
    box-sizing: border-box;
}

.miert-mi-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0px;
    border-bottom: 1px solid #eaeaea;
}

.miert-mi-item:last-child {
    border-bottom: none;
}

.miert-mi-szam-wrap {
    border-radius: 10px;
    padding: 15px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(180deg, #05d24f 0%, #00c951 100%);
    box-shadow: 0 20px 40px rgba(0, 201, 81, 0.35), 0 0 60px rgba(0, 201, 81, 0.25);
}

.miert-mi-szam {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    display: block;
}

.miert-mi-tartalom {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.miert-mi-cim {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

.miert-mi-szoveg {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #191d24;
}

.miert-mi-szoveg p {
    margin: 0 0 10px;
}

.miert-mi-szoveg p:last-child {
    margin-bottom: 0;
}

.miert-mi-szoveg strong,
.miert-mi-szoveg b {
    font-weight: 700;
}

.miert-mi-empty {
    text-align: center;
    padding: 30px;
    color: #777;
    font-family: "Inter", sans-serif;
}

/* Mobil */
@media (max-width: 600px) {
    .miert-mi-item {
        gap: 15px;
        padding: 15px;
    }

    .miert-mi-szam-wrap {
        padding: 12px 16px;
    }

    .miert-mi-szam {
        font-size: 22px;
    }

    .miert-mi-cim {
        font-size: 18px;
    }

    .miert-mi-szoveg {
        font-size: 15px;
    }
}
