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

.section-image-premium .relative {
    height: 100vh;
}

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

/* TODO: Correct gradient */
.section-image-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%);
}

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

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

.section-image-premium .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width:100%;
    align-items: flex-start;
    padding: 24px 16px;
}

.section-image-premium .content-wrapper.plate{
    position: relative;
    width:100%;
} 

.section-image-premium .content-wrapper.plate:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(34px);
    z-index: -1;
    pointer-events: none; 
}

.section-image-premium .content-wrapper .entry-content + a{
    margin-top:var(--premium-big-gap);
}

@media (min-width: 600px) {
    .section-image-premium .content-wrapper {
        width: fit-content;
        padding: 32px 24px 40px 24px;
    }
}

@media (min-width: 768px) {
    .section-image-premium .container {
        padding:48px;
    }

    .section-image-premium .content-wrapper.plate,
    .section-image-premium .content-wrapper .entry-content {
        max-width: 480px;
    }
}

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