.ce-full-image-teaser {
    display: block;
    position: relative;
    isolation: isolate;
    margin-bottom: 1.5em;

    .ce-full-image-teaser__media {
        z-index: 0;
        position: relative;
        overflow: hidden;

        img {
            width: 100%;
            transition: scale 1000ms cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
        }
    }

    .ce-full-image-teaser__content {
        display: block;
        position: absolute;
        width: 100%;
        z-index: 5;
        bottom: 0;
        left: 0;
        background: linear-gradient(to top, rgba(11, 11, 11, 0.85) 0%, transparent 100%);
        padding: 2em;
    }

    .ce-full-image-teaser__eyebrow {
        color: #41A428;
        font-weight: 400;
        font-size: 0.68em;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        margin: 0;
        margin-block-end: .5em;
    }

    .ce-full-image-teaser__header {
        font-weight: 500;
        font-size: clamp(1.2em, 2vw, 1.8em);
        line-height: 1.2;
        color: white;
        margin: 0;
        margin-block-end: .5em;
    }

    .ce-full-image-teaser__subheader {
        font-size: 0.75em;
        font-weight: 300;
        color: white;
        opacity: .7;
        margin: 0;
    }

    .ce-full-image-teaser__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1.2em;
        right: 1.2em;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: white;
        font-size: 0.9em;
        opacity: 0;
        translate: 0 6px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10;
    }
}

a:has(.ce-full-image-teaser):hover,
a:has(.ce-full-image-teaser):focus-visible {
    .ce-full-image-teaser {
        .ce-full-image-teaser__arrow {
            opacity: 1;
            translate: 0;
        }

        .ce-full-image-teaser__media img {
            scale: 1.05;
            filter: brightness(0.9);
        }
    }
}
