/* Top Slider 26 - OQ-01 (hero) */

.top-slider-26-block {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    padding: 50px 0 90px;
    background-color: #E5E5E5;
    background-image: none;
}

.top-slider-26-block.has-bg-image {
    background-size: cover;
    background-position: center;
}

.top-slider-26-block.has-bg-image::before,
.top-slider-26-block.has-bg-image::after {
    display: none;
}

.top-slider-26-block .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.top-slider-26-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.top-slider-26-left {
    flex: 1 1 560px;
}

.top-slider-26-model {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0px 0px 20px 0px;
    color: #333333;
    letter-spacing: -0.02em;
}

.top-slider-26-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0px 0px 60px 0px;
    color: #333333;
    
}

.top-slider-26-title .ts26-title-accent {
    color: #d12023;
    font-weight: 700;
}

.top-slider-26-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0px 0px 60px 0px;
    color: #333333;
}

.top-slider-26-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 6px 0 24px;
}

.top-slider-26-badge {
    height: 50px;
    width: auto;
    display: block;
    margin: 0px 0px 60px 0px;
}

.top-slider-26-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-slider-26-btn {
    height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.top-slider-26-btn--primary {
    background: #d12023;
    color: #ffffff;
    border: 1px solid #d12023;
    box-shadow: 0px 4px 9px 0px #00000040;
}

.top-slider-26-btn--secondary {
    color: #1f1f1f;
}
.top-slider-26-btn--secondary:hover {
    color: #D32D23;
}
.top-slider-26-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-slider-26-device {
    width: auto;
    height: 500px;
    max-width: 100%;
    object-fit: contain;
    display: none;
}

.top-slider-26-device.is-active {
    display: block;
}

.top-slider-26-slides {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    cursor: grab;
    touch-action: pan-y;
}

.top-slider-26-slides.ts26-grabbing {
    cursor: grabbing;
    user-select: none;
}

.top-slider-26-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.top-slider-26-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #d6d6d6;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
}

.top-slider-26-dot.is-active {
    width: 12px;
    height: 12px;
    background: #d12023;
    border-radius: 999px;
}

@media (max-width: 980px) {
    .top-slider-26-block {
        padding: 15px 0 90px;
    }

    .top-slider-26-block .container {
        padding: 0 22px;
    }

    .top-slider-26-layout {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .top-slider-26-left {
        max-width: 100%;
    }

    .top-slider-26-description {
        max-width: 680px;
    }

    .top-slider-26-slides {
        min-height: 420px;
    }

    .top-slider-26-device {
        height: 420px;
    }

    .top-slider-26-actions {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .top-slider-26-btn {
        width: 100%;
        max-width: 420px;
    }
}

