.paragraph--type--hero {
    color: var(--purple);
    width: 100vw;
    height: 50vw;
    position: relative;
}

.paragraph--type--hero .video-wrap {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: black url('../images/background-hero.jpg') no-repeat center center;
    background-size: cover;
}

.paragraph--type--hero .content-wrap {
    position: absolute;
    z-index: 2;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: url('../images/background-gradient.svg') no-repeat center bottom;
    background-size: cover;
    color: white;
    padding: 80px;
    box-sizing: border-box;
}

.paragraph--type--hero .content-wrap .date {
    font-size: 50px;
    font-weight: 700;
    color: var(--purple);
}

@media (max-width: 1100px) {
    .paragraph--type--hero {
        height: auto;
    }
    .paragraph--type--hero .video-wrap {
        position: relative;
        aspect-ratio: 2/1;
    }
    .paragraph--type--hero .content-wrap {
        position: relative;
        width: 100%;
        height: auto;
        /* aspect-ratio: 1.6/1; */
        aspect-ratio: initial;
        background: var(--green);
        background-position: center center;
        padding: 20px;
    }
    .paragraph--type--hero .content-wrap .date {
        font-size: 30px;
    }
}