.km-hero {
    position: relative;
    height: 100dvh;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    background: linear-gradient(135deg, #212a55 0%, #171d3d 100%);
}
.km-hero__media,
.km-hero__media .km-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.km-hero__signet {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: auto;
    rotate: 180deg;
}
.km-hero__content {
    position: absolute;
    z-index: 1;
    left: 33.54%;
    right: 5%;
    bottom: 6rem;
    max-width: 700px;
    box-sizing: border-box;
}
.km-hero__headline {
    margin: 0 0 0.625rem;
    font-size: clamp(2.25rem, 1.4rem + 3.6vw, 5rem);
    line-height: 0.83;
    font-weight: 900;
    text-transform: none;
}
.km-hero__line {
    display: block;
    width: fit-content;
    color: #fff;
    border-bottom: 6px solid #f9b000;
}
.km-hero__sub {
    color: #fff;
    font-size: clamp(1.05rem, 0.87rem + 0.78vw, 1.65rem);
    margin: 0;
    max-width: 750px;
}
@media (max-width: 768px) {
    .km-hero__content {
        left: 0;
        right: 0;
        bottom: 4rem;
        padding-left: 1.25rem;
        padding-right: 6%;
    }
}
