.hero-video {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.hero-video__media,
.hero-video__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video__poster {
    z-index: 0;
}

.hero-video__media {
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video__poster {
        display: block;
    }

    .hero-video__media {
        display: none;
    }
}


.hero-video__content-wrapper {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 100px 0 80px 0;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-video__content-wrapper {
        padding: 80px 0 50px 0;
    }
}

.hero-video__content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 1.5rem;
    align-items: end;
}

.hero-video__title {
    font-size: 3rem;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
    line-height: 4rem;
    grid-column: 1 / 9;
}

.hero-video__body {
    grid-column: 9 / -1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 2rem;
    margin-bottom: 0.35rem;
}

.main-page-hero .hero-video__body {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-video__content {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-video__title {
        grid-column: 1 / -1;
    }

    .hero-video__body {
        grid-column: 1 / -1;
    }
}


.hero-video__links {
    display: flex;
    gap: 3.25rem;
    justify-content: start;
    font-family: "Inter", sans-serif;
    margin-top: 1.5rem;
}

.hero-video__description {
    font-size: 1.5rem;
    font-weight: 100;
    text-align: left;
}

@media (max-width: 1100px) {
    .hero-video__content {
        gap: 18px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        margin: 0 1.5rem !important;
    }

    .hero-video__title {
        font-size: clamp(1.75rem, 4.2vw, 2.4rem);
        line-height: 1.15;
        max-width: 18ch;
    }

    .hero-video__body {
        gap: 2rem;
        width: 100%;
        max-width: 520px;
    }

    .hero-video__description {
        font-size: clamp(1.05rem, 2.4vw, 1.35rem);
        line-height: 1.35;
        max-width: 48ch;
    }

    .hero-video__links {
        gap: 2.5rem;
        flex-wrap: wrap;
    }

    .hero-video__links .link {
        font-size: 12px;
    }

    .hero-video__media,
    .hero-video__poster {
        object-position: 50% 50%;
    }
}

@media (max-width: 768px) {
    .hero-video {
        min-height: 100vh;
    }

    .hero-video__content {
        gap: 14px;
    }

    .hero-video__title {
        font-size: clamp(1.35rem, 6.2vw, 1.8rem);
        line-height: 1.15;
        max-width: 20ch;
        margin-bottom: 1.5rem;
    }

    .hero-video__description {
        font-size: clamp(0.95rem, 3.7vw, 1.15rem);
        line-height: 1.4;
    }

    .hero-video__media,
    .hero-video__poster {
        object-position: 55% 50%;
    }
}

