/* TEASER */

.teaser-container {
    width: 100%;
    height: fit-content;
}

.teaser-wrapper {
    padding: 50px 20% 100px 20%;

    position: relative;
}

.teaser-video {
    perspective: 100px;
}

.teaser-video-element {
    width: 100%;
    aspect-ratio: 2;

    border: none;

    border-radius: 20px;

    box-shadow: 0 0 100px #00ba3544;
}

.teaser-image {
    width: calc(100% - 400px);

    margin: 0px 200px;
}

@media screen and (max-width: 900px) {

    .teaser-wrapper {
        padding: 50px 10px 100px 10px;
    }

    .teaser-image {
        width: 100%;
        margin: 10px 0;
    }

}


.teaser-sale-image-container {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
}

.teaser-sale-image-container img {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.teaser-sale-skeleton-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: teaser-sale-skeleton-loading 1.5s infinite;
    border-radius: 6px;
    z-index: 1;
}

@keyframes teaser-sale-skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
