.dru-slider-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.dru-slider {
    position: relative;
    border-radius: 40px;
    overflow: visible;
    background: transparent;
}

.dru-slider::before,
.dru-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 5;
    pointer-events: none;
}

.dru-slider::before {
    left: -180px;
    background: linear-gradient(90deg, #181818 0%, rgba(24, 24, 24, 0) 100%);
}

.dru-slider::after {
    right: -180px;
    background: linear-gradient(270deg, #181818 0%, rgba(24, 24, 24, 0) 100%);
}

.dru-slider__slide {
    position: relative;
    width: 100%;
    height: var(--slide-h, 610px);
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    border-radius: 40px;
}

.dru-slider__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.dru-slider__content {
    position: relative;
    z-index: 3;
    width: 479px;
    margin-left: 80px;
}

.dru-slider__title {
    margin: 0 0 30px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 54px;
    line-height: 70.2px;
    color: var(--text-primary);
}

.dru-slider__subtitle {
    margin: 0 0 40px;
    font-size: 18px;
    line-height: 25.2px;
    color: var(--text-primary);
}

.dru-slider__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dru-slider__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 28px;
    border-radius: 15px;
    font-family: var(--font);
    font-size: 15px;
    white-space: nowrap;
    transition: opacity .15s ease, background .15s ease, border-color .15s ease;
}

.dru-slider__btn--solid {
    background: var(--accent);
    color: #090909;
    border: 1px solid var(--accent);
}
.dru-slider__btn--solid:hover { opacity: .88; }

.dru-slider__btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--accent);
}
.dru-slider__btn--outline:hover { background: rgba(107, 176, 34, .12); }

.dru-slider__pagination {
    bottom: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dru-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 90px;
    background: #373737;
    opacity: 1;
    margin: 0 !important;
    transition: all .25s ease;
}

.dru-slider__pagination .swiper-pagination-bullet-active {
    width: 20px;
    background: var(--accent);
}

.dru-slider__prev,
.dru-slider__next {
    color: var(--accent);
}

@media (max-width: 1500px) {
    .dru-slider__slide { width: 100%; }
}

@media (max-width: 1240px) {
    .dru-slider__content { width: 420px; margin-left: 50px; }
    .dru-slider__title { font-size: 40px; line-height: 52px; }
}

@media (max-width: 900px) {
    .dru-slider__slide { height: 460px; }
    .dru-slider__bg { width: 50%; }
    .dru-slider__content { width: 100%; margin-left: 36px; padding-right: 36px; }
    .dru-slider__title { font-size: 32px; line-height: 42px; margin-bottom: 14px; }
    .dru-slider__subtitle { font-size: 15px; margin-bottom: 24px; }
}

@media (max-width: 600px) {
    .dru-slider-section { padding-top: 12px; padding-bottom: 12px; }
    .dru-slider { border-radius: 24px; }
    .dru-slider__slide { height: 380px; border-radius: 24px; }
    .dru-slider__bg { width: 40%; opacity: .55; }
    .dru-slider__content { margin-left: 20px; padding-right: 20px; }
    .dru-slider__title { font-size: 24px; line-height: 32px; }
    .dru-slider__btn { height: 46px; padding: 0 20px; font-size: 14px; }
}
