.sb-hero-2 {
    position: relative;
    height: 80vh;
    min-height: 500px;
    color: #FFF; /* Текст всегда светлый из-за темного оверлея */
}
.sb-hero-2 .sb-hero-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.sb-hero-2 .swiper-slide {
    background-size: cover;
    background-position: center;
}
.sb-hero-2 .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
}
.sb-hero-2 .sb-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.sb-hero-2 .sb-hero-content .wp-block-group {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: var(--sb-radius-l);
    max-width: 800px;
}
.sb-hero-2 h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}
.sb-hero-2 p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.sb-hero-2 .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.7;
}
.sb-hero-2 .swiper-pagination-bullet-active {
    background-color: var(--sb-primary);
    opacity: 1;
}