.header-usps {
    position: relative;
    width: 100%;
    padding: 0 1.25rem;
    margin: 0 auto 1rem;
    height: auto; /* 432px */
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.header-usps__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.header-usps__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-sm);
    align-items: center;
    padding-block-start: 4rem;
}

.header-usps__content {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-block-end: 6rem;
}

.header-usps__title {
    font-size: var(--font-size-h1); /* 56px */
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1;
    margin: 0;
}

.header-usps__subtitle {
    font-family: var(--font-family);
    font-size: var(--font-size-h4); /* 20px */
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

/* ── Subtitle above title ── */
.header-usps__content--subtitle-above .header-usps__subtitle {
    order: -1;
    margin-block-end: 1.5rem;
    margin-block-start: 0;
}

/* ── USP Card ── */
.header-usps__card {
    grid-column: 9 / -1;
    width: 23.0625rem; /* 369px */
    background-color: var(--color-bg-darkest);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 2rem 2rem 7rem; 
    display: none;
    flex-direction: column;
    gap: 1rem; 
    justify-self: flex-end;
}

.header-usps__usp {
    display: flex;
    align-items: center;
    gap: 0.9375rem; /* 15px */
}

.header-usps__usp-icon {
    width: 2.625rem; /* 42px */
    height: 2.625rem;
    border-radius: 50%;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-white);
    font-size: 1rem;
}

.header-usps__usp-text {
    font-size: 0.9375rem; /* 15px */
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    line-height: 1.6;
}

/* ── Breadcrumbs ── */
.header-usps .breadcrumb__breadcrumbs {
    width: auto;
    margin-inline-end: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    z-index: 3;
}

/* ── Wave ── */
.header-usps__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.header-usps__wave svg {
    display: block;
    width: 300%;
    height: auto;
}

.header-usps + textblock-media {
    padding-block-start: 2.5rem;
}

@media ( min-width: 30rem ) {
    
    .header-usps__wave {
        bottom: -2rem;
    }
}

@media ( min-width: 48rem ) {

    .header-usps {
        width: calc(100% - 2.5rem);
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .header-usps__content {
        grid-column: 1 / 10;
        margin-block-end: 15%;
    }

    .header-usps__wave {
        bottom: -1px;
    }

    .header-usps__wave svg {
        width: 100%;
    }
}

@media ( min-width: 64rem ) {

    .header-usps__content {
        grid-column: 1 / 9;
    }

    .header-usps__card {
        display: flex;
    }

    .header-usps .breadcrumb__breadcrumbs {
        bottom: 1.5rem;
    }
}

@media ( min-width: 83.75rem ) {
    .header-usps {
        width: calc(100% - 5rem);
    }
}

@media ( min-width: 90rem ) {

    .header-usps__container {
        min-height: 20rem;
    }

    .header-usps .breadcrumb__breadcrumbs {
        left: calc((100% - var(--container-max-width)) / 2);
    }
}

@media ( min-width: 95rem ) {

    .header-usps .breadcrumb__breadcrumbs {
        bottom: 2.5rem;
    }
}

@media ( min-width: 120rem ) {
    .header-usps__container {
        min-height: 25rem;
    }

    .header-usps__content {
        margin-block-end: 5rem;
    }
}