.sb {
    display: flex;
    gap: 20px;
    width: 100%;
}

.sb_title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb_title img {
    width: 20px;
}

.sb_title h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 5px;
}

.sb_right {
    width: 60%;
    border-radius: 20px;
    border: 1px solid #2A2F3C;
    background: linear-gradient(180deg, #2A2E3A 0%, #1E2432 100%);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.sb_left {
    width: 40%;
}

.sb_slider img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border-radius: 13px;
    border: 1px solid #424B66;
    background: linear-gradient(180deg, #3D4866 0%, #2D3654 100%);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.25);
}

.sb_slider .swiper-slide {
    padding: 4px;
}

.sb_slider .swiper-slide a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    transition: all 0.3s ease;
}

.sb_slider .swiper-slide a:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sb_slider .swiper-slide a:hover img {
    transform: scale(1.05);
}

.sb_slider .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 13px;
    border: 1px solid #424B66;
    background: linear-gradient(180deg, #3D4866 0%, #2D3654 100%);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.sb_promo {
    width: auto;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 160px;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sb_promo h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
}

.sb_promo p {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #ffffffb3;
}

.sb_promo_link {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #FFD700;
    width: max-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sb_promo_link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sb_promo_link:hover {
    color: #000;
    border-color: transparent;
}

.sb_promo_link:hover:before {
    opacity: 1;
}

.sb_search {
    position: relative;

}

.sb_search input {
    width: 100%;
    background: #1E2432;
    border: 1px solid #2A2F3C;
    border-radius: 20px;
    padding: 12px 20px 12px 50px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sb_search input::placeholder {
    color: #7d8494;
}

.sb_search input:focus {
    outline: none;
    border-color: #0582EE;
}

.sb_search-btn {
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0582EE;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sb_search-btn:hover {
    background: #0470c5;
}

.sb_search-btn i {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .sb_right {
        width: 100%;
    }

    .sb_left {
        display: none;
        height: 0;
    }
}

@media (max-width: 650px) {
    .sb_title h2 {
        font-size: 16px;
    }
}
