.video-answers-section {
    max-width: 1903px;
    margin: 0 auto;
    padding: 80px 60px 0 60px;
    background: #fff;
}

.video-answers__header {
    text-align: center;
    margin-bottom: 60px;
}

.video-answers__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: rgba(37, 37, 37, 0.6);
}

.video-answers__title {
    font-weight: 500;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #252525;
    margin-top: 10px;
}

.video-answers__title span {
    font-style: italic;
    color: #911e45;
}

.video-answers-swiper {
    overflow: hidden;
    padding: 10px 5px 30px 5px;
}

.video-answers-swiper .swiper-wrapper {
    display: flex;
}

.video-answers-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

@media (min-width: 1280px) {
    .video-answers-swiper .swiper-wrapper {
        justify-content: center;
    }
}

.video-answers-card {
    width: 280px;
    max-width: 280px;
}

.video-answers-video {
    aspect-ratio: 9 / 16;
    width: 100%;
    position: relative;
    background: #eceae9;
    overflow: hidden;
}

.video-answers-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-answers-card:hover .video-answers-video img {
    transform: scale(1.02);
}

.video-answers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    cursor: pointer;
}

.video-answers-card:hover .video-answers-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.video-answers-card .btn-play {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.video-answers-card .btn-play::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #911e45;
    margin-left: 5px;
}

.video-answers-card .btn-play:hover {
    transform: scale(1.08);
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-answers-question {
    margin-top: 18px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: #252525;
    text-align: center;
    width: 100%;
}

.video-answers-card:hover .video-answers-question {
    color: #911e45;
}

.video-answers-question::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #911e45;
    margin: 10px auto 0;
    opacity: 0.5;
    transition: width 0.2s ease, opacity 0.2s ease;
}

.video-answers-card:hover .video-answers-question::after {
    width: 60px;
    opacity: 1;
}

.video-answers-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.video-answers-navigation > a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(44, 44, 44, 0.1);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23252525" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-answers-navigation > a:hover {
    border-color: #911e45;
    background-color: rgba(145, 30, 69, 0.05);
}

.video-answers-navigation > a.video-answers-btn-next {
    transform: rotate(180deg);
}

@media (max-width: 960px) {
    .video-answers-section {
        padding: 60px 30px 0 30px;
    }
    .video-answers__title {
        font-size: 32px;
    }
    .video-answers-card {
        width: 240px;
    }
    .video-answers-question {
        font-size: 14px;
        margin-top: 14px;
    }
    .video-answers-card .btn-play {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575px) {
    .video-answers-section {
        padding: 40px 15px 0 15px;
    }
    .video-answers__subtitle {
        font-size: 12px;
    }
    .video-answers__title {
        font-size: 26px;
    }
    .video-answers-card {
        width: 220px;
    }
    .video-answers-question {
        font-size: 13px;
        margin-top: 12px;
    }
    .video-answers-question::after {
        width: 30px;
        margin-top: 8px;
    }
    .video-answers-card .btn-play {
        width: 55px;
        height: 55px;
    }
    .video-answers-navigation {
        margin-top: 35px;
    }
    .video-answers-navigation > a {
        width: 45px;
        height: 45px;
        background-size: 20px;
    }
}