/**
 * Voco Vélemények Slider - Styles
 */

.voco-velemenyek-section {
    width: 100%;
}

.voco-velemenyek-slider {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.voco-velemenyek-slider .splide__track {
    overflow: hidden;
}

/* figure reset */
.voco-velemeny-item {
    margin: 0;
    padding: 0;
    text-align: left;
    padding-right: 50px;
}

/* Idézet (blockquote) reset */
.voco-velemeny-text {
    margin: 0 0 20px 0;
    padding: 0;
    border: 0;
    quotes: none;
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}
.voco-velemeny-text p {
    margin: 0;
}

.voco-velemeny-meta {
    display: block;
    font-style: normal;
}

.voco-velemeny-author {
    display: block;
    margin-bottom: 5px;
    font-style: normal;
}

.voco-velemeny-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
    font-family: "Montserrat", Sans-serif;
}

.voco-velemeny-country {
    color: #666;
    font-size: 15px;
    font-family: "Montserrat", Sans-serif;
}

.voco-velemeny-country::before {
    content: '– ';
}

.voco-velemeny-platform {
    display: block;
    font-size: 13px;
    color: #888;
    font-family: "Montserrat", Sans-serif;
    font-style: italic;
}

.voco-velemeny-platform a {
    color: #007cba;
    text-decoration: none;
    transition: color 0.3s ease;
}

.voco-velemeny-platform a:hover,
.voco-velemeny-platform a:focus-visible {
    color: #005a87;
    text-decoration: underline;
}

.voco-velemeny-platform a:focus-visible {
    outline: 2px solid #007cba;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Custom Arrows */
.voco-velemenyek-arrows {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voco-arrow-prev,
.voco-arrow-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.voco-arrow-prev:hover,
.voco-arrow-next:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.voco-arrow-prev:focus-visible,
.voco-arrow-next:focus-visible {
    outline: 2px solid #f8b90a;
    outline-offset: 3px;
}

.voco-arrow-prev svg,
.voco-arrow-next svg {
    width: 20px;
    height: 20px;
    fill: #007cba;
    display: block;
}

/* Akadálymentes szöveg */
.voco-velemenyek-section .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-arrow-prev,
    .voco-arrow-next,
    .voco-velemeny-platform a {
        transition: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .voco-velemeny-item {
        padding: 30px 60px 30px 20px;
    }

    .voco-velemeny-text {
        font-size: 1rem;
    }

    .voco-velemenyek-arrows {
        right: 0.5rem;
    }

    .voco-arrow-prev,
    .voco-arrow-next {
        width: 40px;
        height: 40px;
    }

    .voco-arrow-prev svg,
    .voco-arrow-next svg {
        width: 16px;
        height: 16px;
    }
}

