/* Cover Component */
/* ------------------------------------------------- */

section.cover {
    position: relative;
    width: 100%;
    height: calc(100svh - var(--space-9) * 2);
    padding: var(--space-9) 0;
    overflow: hidden;
}

section.cover img {
    position: absolute;
    left: 0;
    top: -15%;
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
}

section.cover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 66.69%, rgba(0, 0, 0, 0.70) 93.27%);
    background-blend-mode: multiply, normal;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

section.cover .wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    justify-content: end;
}

section.cover .heading-1 {
    color: var(--neutral-25);
}

section.cover .body-small {
    color: var(--neutral-25);
}
