.hero {
    min-height: 452px;
    color: #fff;
    overflow: hidden;
}

.hero__layout {
    position: relative;
    display: flex;
    padding-block-start: 4.8rem;
    padding-block-end: 4rem;
    min-height: inherit;
    z-index: 2;
}

.hero__layout::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(1, 19, 52, 0.83);
    z-index: 2;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__content {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    max-width: 80vw;
    min-height: 100%;
    z-index: 3;
}

.hero__title {
    margin-block-end: 2.4rem;
}

.hero__text {
    max-width: 64ch;
}

.hero__action {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-block-start: 2.4rem;
}

@media (min-width: 960px) {
    .hero {
        min-height: 70vh;
    }

    .hero__content {
        max-width: 80ch;
        min-height: inherit;
    }

    .hero__title {
        margin-block-end: 4.8rem;
    }

    .hero__action {
        gap: 4rem;
        margin-block-start: 4rem;
    }
}
