/**
 * Voco Ajánlat - Styles
 */

/* Akadálymentes szöveg */
.voco-ajanla-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;
}

.voco-ajanla-button:focus-visible {
    outline: 2px solid #333333;
    outline-offset: 3px;
    background-color: #333333;
    color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
    .voco-ajanla-button {
        transition: none !important;
    }
}

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

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

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

.voco-ajanla-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-ajanla-item.voco-ajanla-reversed {
    flex-direction: row-reverse;
}

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

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

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

.voco-ajanla-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-ajanla-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background-color: #f8b90a;
}

.voco-ajanla-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    border-radius: 50px;
    background-color: #f8b90a;
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.voco-ajanla-button:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .voco-ajanla-item {
        flex-direction: column !important;
        gap: 0px;
        margin-bottom: 50px;
    }

        .voco-ajanla-title {
        font-size: 25px;
        margin-bottom: 15px;
    }
    
    .voco-ajanla-content {
        padding: 0;
    }

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


    .voco-ajanla-content {
        padding: 25px;
    }

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

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