/**
 * Voco Élmény - Styles
 */

/* Akadálymentes szöveg */
.voco-elmeny-wrapper .screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .voco-elmeny-image img {
        transition: none !important;
    }
}

.voco-elmeny-wrapper {
    width: 100%;
}

.voco-elmeny-item {
    display: flex;
    gap: 0px;
    margin-bottom: 0px;
    background-color: #F9F7F3;
    flex-direction: row;
}

.voco-elmeny-item:last-child {
    margin-bottom: 0;
}

.voco-elmeny-text {
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.08px;
    color: #000000;
}

/* Reversed layout - image on right */
.voco-elmeny-item.voco-elmeny-reversed {
    flex-direction: row-reverse;
}

.voco-elmeny-image {
    width: 50%;
}

.voco-elmeny-image img {
    width: 100%;
    height: 500px !important;
    object-fit: cover;
    display: block;
}

/* Tartalom */
.voco-elmeny-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.voco-elmeny-title {
    margin: 0 0 20px 0;
    padding-bottom: 20px;
    line-height: 1.2;
    font-family: "Montserrat", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: #333333;
    position: relative;
}

.voco-elmeny-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background-color: #f8b90a;
}




@media (max-width: 768px) {
    .voco-elmeny-item {
        margin-bottom: 20px;
            flex-direction: column;
    }
    
    .voco-elmeny-title {
            font-size: 25px;
        margin-bottom: 15px;
    }

    .voco-elmeny-item.voco-elmeny-reversed {
    flex-direction: column;
}
    
    .voco-elmeny-text {
        font-size: 15px;
    }

    .voco-elmeny-image {
    width: 100%;
}

.voco-elmeny-image img {
    height: 300px !important;

}
}



