.sb-hero-7 {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--sb-bg);
    overflow: hidden;
}
.sb-hero-7 .sb-hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}
.sb-hero-7 .sb-hero-content {
    position: relative;
    padding-left: var(--sb-page-pad);
    max-width: 45%;
}
.sb-hero-7 h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--sb-base);
}
.sb-hero-7 p {
    font-size: 1.2rem;
    color: var(--sb-muted);
}
@media (max-width: 900px) {
    .sb-hero-7 .sb-hero-bg-shape {
        width: 100%;
        height: 50%;
        top: 0;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    }
    .sb-hero-7 {
        align-items: flex-end;
        padding-bottom: 40px;
    }
    .sb-hero-7 .sb-hero-content {
        max-width: 100%;
        text-align: center;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }
}