.hero-premium {
    position: relative;
    overflow: hidden;
    max-width: none;
    height: fit-content;
    color: white;
}

.hero-premium h1 span {
    display: block;
}

.hero-premium h1 span:not(:only-child):last-child {
    margin-top: var(--premium-big-gap);
}

.hero-premium .relative {
    height: 100vh;
}

.hero-premium .background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    height: 100%;
}

/* TODO: Correct gradient */
.hero-premium .background::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0) 70%,
            rgba(0, 0, 0, 1) 100%),
        rgba(0, 0, 0, 0.6);
}

.hero-premium .background img,
.hero-premium .background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-premium .headline >*{
    max-width:768px;
}

.hero-premium .container {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10;
    height: 100%;
    width: 100%;
    padding: 0 16px;
}

.hero-premium .content-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: var(--premium-big-gap);
    padding: calc(40px + 6dvw) 16px;
    width: 100%;
    /* max-width: 768px; */
}

.hero-premium .content-wrapper .labels {
    margin-top: 24px;
}

.hero-premium .content-wrapper .entry-content {
    max-width: 384px;
}

.hero-premium .content-wrapper .entry-content>* {
    color: var(--premium-entry-content-text);
}


@media (min-width: 768px) {}

@media (min-width: 1200px) {}
