.elismert-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.elismert-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

/* BAL */
.elismert-bal {
    flex: 1;
    max-width: 660px;
}

.elismert-focim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 51px;
    color: #0A4B55;
    margin-bottom: 32px;
}

.elismert-focim span {
    color: #996C2D;
}

.elismert-szoveg {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #0A4B55;
    margin-bottom: 16px;
}

.elismert-gomb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0A4B55;
    border: 2px solid #0A4B55;
    border-radius: 50px;
    padding: 12px 36px;
    text-decoration: none;
    margin-top: 24px;
    transition: background-color 0.2s, color 0.2s;
}

.elismert-gomb:hover {
    background-color: #0A4B55;
    color: #ffffff;
}

/* JOBB */
.elismert-jobb {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.elismert-kep-hatter {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background-color: #F5F0E8;
    z-index: 0;
}

.elismert-kep {
    position: relative;
    z-index: 1;
    max-height: 580px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .elismert-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .elismert-bal {
        max-width: 100%;
    }

    .elismert-focim {
        font-size: 32px;
    }

    .elismert-jobb {
        min-height: 320px;
    }

    .elismert-kep-hatter {
        width: 280px;
        height: 280px;
    }

    .elismert-kep {
        max-height: 360px;
    }
}

/* Szöveg animáció - alulról fel */
.elismert-anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) var(--delay, 0s);
}

.elismert-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Kép: alapból rejtve, kinő a háttérdobozból */
.elismert-kep-anim {
    opacity: 0;
    transform: scale(0.45) translateY(20px);
    transition: opacity 1s ease 0.5s, transform 1s cubic-bezier(0.34, 1.2, 0.64, 1) 0.5s;
}

.elismert-kep-wrap.visible .elismert-kep-anim {
    opacity: 1;
    transform: scale(1) translateY(0);
}