:root {
    --bg: #07090d;
    --bg-soft: #0d1118;
    --card: #101620;
    --card-2: #151d29;

    --text: #f7f9fc;
    --muted: #aeb9c8;

    --line: rgba(255,255,255,.10);

    --accent: #7cff6b;
    --accent-2: #46b8ff;

    --shadow: 0 20px 60px rgba(0,0,0,.35);

    --radius: 22px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(circle at 85% 10%, rgba(70,184,255,.12), transparent 35%),
        radial-gradient(circle at 15% 20%, rgba(124,255,107,.10), transparent 35%),
        var(--bg);

    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin-inline: auto;
}

.section {
    padding: 84px 0;
}

.section-tight {
    padding: 58px 0;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;

    backdrop-filter: blur(16px);
    background: rgba(7,9,13,.82);
    border-bottom: 1px solid var(--line);
}

.nav {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;

    gap: 10px;

    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--accent-2)
        );

    color: #071006;

    font-weight: 1000;

    box-shadow:
        0 0 30px rgba(124,255,107,.18);
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 22px;
}

.nav-links a {
    color: var(--muted);
    font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.menu-btn {
    display: none;

    border: 1px solid var(--line);

    background: var(--card);
    color: var(--text);

    border-radius: 12px;

    padding: 10px 12px;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 0;
    border-radius: 999px;

    padding: 13px 20px;

    font-weight: 900;
    cursor: pointer;

    transition:
        transform .18s ease,
        filter .18s ease,
        border-color .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--accent-2)
        );

    color: #071006;
}

.btn-secondary {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    color: var(--text);
}

.btn-small {
    padding: 10px 15px;
    font-size: .92rem;
}


/* HERO */

.hero {
    min-height: 78vh;

    display: grid;
    align-items: center;

    padding: 82px 0 66px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;

    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    border: 1px solid rgba(124,255,107,.24);
    background: rgba(124,255,107,.07);
    color: #c9ffc2;

    padding: 7px 12px;
    border-radius: 999px;

    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 18px 0;

    line-height: .96;
    letter-spacing: -.045em;

    font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero h1 span,
.page-hero h1 span {
    display: block;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--accent-2)
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    max-width: 720px;

    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
    margin-top: 28px;
}

.hero-note {
    margin-top: 16px !important;
    color: #c7d0dc !important;
    font-size: .92rem !important;
}


/* HERO ART */

.hero-art {
    position: relative;
    min-height: 490px;
}

.poster {
    position: absolute;

    overflow: hidden;

    border-radius: 28px;
    border: 1px solid var(--line);

    box-shadow: var(--shadow);

    background:
        linear-gradient(160deg, rgba(70,184,255,.20), transparent 45%),
        linear-gradient(20deg, rgba(124,255,107,.18), transparent 50%),
        #111824;
}

.poster::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 39px,
            rgba(255,255,255,.025) 40px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 39px,
            rgba(255,255,255,.025) 40px
        );
}

.poster-main {
    inset: 28px 12px 28px 36px;
    transform: rotate(2deg);
    padding: 30px;
}

.poster-small {
    width: 180px;
    height: 230px;

    right: -10px;
    bottom: 0;

    transform: rotate(8deg);

    padding: 22px;

    background:
        linear-gradient(150deg, rgba(124,255,107,.22), transparent 50%),
        #141a22;
}

.poster-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.poster-topline {
    color: var(--muted);

    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 900;
}

.poster-title {
    font-size: clamp(2.7rem, 7vw, 5.8rem);

    line-height: .8;
    letter-spacing: -.06em;
    font-weight: 1000;
    text-transform: uppercase;
}

.poster-player {
    min-height: 150px;

    display: grid;
    place-items: center;

    text-align: center;

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(255,255,255,.12),
            transparent 18%
        ),
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.01)
        );

    color: var(--muted);

    font-weight: 800;
    letter-spacing: .08em;

    padding: 18px;
}

.mini-poster-text {
    font-weight: 1000;
    font-size: 1.5rem;
    line-height: 1;
}


/* SECTION HEADINGS */

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 24px;

    margin-bottom: 30px;
}

.section-head h2 {
    margin: 10px 0 0;

    font-size: clamp(2rem, 5vw, 3.7rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.section-head p {
    margin: 0;

    max-width: 620px;
    color: var(--muted);
}


/* FEATURE STRIP */

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    overflow: hidden;

    background: var(--line);

    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-strip > div {
    background: var(--bg-soft);
    padding: 22px;
}

.feature-strip strong {
    display: block;

    margin-bottom: 3px;
    font-size: 1.05rem;
}

.feature-strip span {
    color: var(--muted);
    font-size: .9rem;
}


/* CARDS */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.card {
    padding: 26px;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.018)
        );

    box-shadow:
        0 12px 35px rgba(0,0,0,.15);
}

.card h3 {
    margin: 10px 0 8px;
    font-size: 1.25rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;
    border: 1px solid var(--line);

    background:
        linear-gradient(
            135deg,
            rgba(124,255,107,.14),
            rgba(70,184,255,.14)
        );

    font-size: 1.25rem;
}


/* PORTFOLIO */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);

    gap: 18px;
}

.work-card {
    position: relative;

    grid-column: span 4;

    min-height: 360px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 24px;

    background:
        linear-gradient(155deg, rgba(70,184,255,.16), transparent 50%),
        linear-gradient(30deg, rgba(124,255,107,.09), transparent 52%),
        #101621;

    box-shadow: var(--shadow);
}

.work-card.wide {
    grid-column: span 8;
}

.work-card.tall {
    min-height: 500px;
}


/* IMAGE AREA */

.portfolio-image-area {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px 22px 105px 22px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(70,184,255,.08),
            transparent 60%
        ),
        #0d1118;
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image-contain {
    object-fit: contain;
    object-position: center;
}

.portfolio-image-cover {
    object-fit: cover;
    object-position: center;
}


/* PLACEHOLDERS */

.portfolio-placeholder,
.placeholder {
    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    padding: 30px 30px 105px 30px;

    text-align: center;

    color: #cbd4df;

    background:
        repeating-linear-gradient(
            45deg,
            transparent 0 14px,
            rgba(255,255,255,.018) 14px 28px
        );
}


/* LABEL */

.work-label {
    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 16px;

    z-index: 10;

    padding: 13px 14px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;

    background: rgba(6,8,12,.88);
    backdrop-filter: blur(12px);

    transition:
        opacity .22s ease,
        transform .22s ease;
}

.work-label strong {
    display: block;
    margin-bottom: 2px;
}

.work-label span {
    color: var(--muted);
    font-size: .86rem;
}


/* HIDE LABEL DURING TRANSITION */

#featured-card.is-transitioning .work-label {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}


/* SLIDER ARROWS */

.slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 60;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;

    background: rgba(6,8,12,.70);
    color: white;

    font-size: 1.8rem;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);

    backdrop-filter: blur(8px);

    transition:
        opacity .2s ease,
        background .2s ease,
        transform .2s ease;
}

.slider-arrow:hover {
    background: rgba(70,184,255,.30);
    transform: translateY(-50%) scale(1.07);
}

.slider-arrow-left {
    left: 14px;
}

.slider-arrow-right {
    right: 14px;
}

#featured-card.is-transitioning .slider-arrow {
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   V2 FEATURED TRANSITION
   glitch + flash + energy wipe + scanlines + logo stinger
   ========================================================= */

#featured-image {
    transition:
        opacity .28s ease,
        filter .32s ease,
        transform .38s cubic-bezier(.2,.9,.25,1);
}

#featured-card.is-transitioning #featured-image {
    opacity: .06;

    filter:
        blur(13px)
        brightness(1.55)
        contrast(1.25)
        saturate(1.5);

    transform:
        scale(1.065)
        rotate(-.5deg);
}

.transition-effect {
    position: absolute;
    inset: 0;

    z-index: 50;

    overflow: hidden;

    display: grid;
    place-items: center;

    pointer-events: none;

    opacity: 0;

    background: transparent;
}

.transition-effect.active {
    opacity: 1;
}


/* DARK BACKDROP */

.transition-darken {
    position: absolute;
    inset: 0;

    opacity: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(8,15,22,.22),
            rgba(3,5,8,.84) 70%
        );
}


/* WHITE/COLOR FLASH */

.transition-flash {
    position: absolute;
    inset: 0;

    opacity: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.72) 0%,
            rgba(124,255,107,.28) 22%,
            rgba(70,184,255,.18) 42%,
            transparent 72%
        );

    transform: scale(.4);
}


/* DIAGONAL ENERGY WIPE */

.transition-energy {
    position: absolute;

    width: 38%;
    height: 180%;

    left: -60%;
    top: -40%;

    opacity: 0;

    transform:
        rotate(18deg);

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(124,255,107,.15) 18%,
            rgba(124,255,107,.95) 42%,
            rgba(255,255,255,.95) 50%,
            rgba(70,184,255,.95) 58%,
            rgba(70,184,255,.15) 82%,
            transparent 100%
        );

    filter: blur(3px);
}


/* SCANLINES */

.transition-scanlines {
    position: absolute;
    inset: 0;

    opacity: 0;

    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 5px,
            rgba(255,255,255,.08) 6px,
            transparent 7px
        );
}


/* GLITCH BARS */

.glitch-bar {
    position: absolute;

    left: -12%;
    width: 124%;

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(124,255,107,.55),
            rgba(255,255,255,.80),
            rgba(70,184,255,.55),
            transparent
        );

    mix-blend-mode: screen;
}

.glitch-bar-1 {
    top: 24%;
    height: 4px;
}

.glitch-bar-2 {
    top: 49%;
    height: 8px;
}

.glitch-bar-3 {
    top: 71%;
    height: 3px;
}


/* CENTER BRAND STINGER */

.transition-brand {
    position: relative;

    z-index: 8;

    width: min(410px, 72%);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    opacity: 0;

    transform:
        scale(.72)
        translateY(8px);

    filter:
        blur(10px);
}

.transition-logo-image {
    width: 100%;

    max-height: 210px;

    object-fit: contain;
    object-position: center;
}

.transition-tagline {
    margin-top: 5px;

    padding: 6px 11px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.14);

    background: rgba(7,10,15,.52);

    color: rgba(255,255,255,.92);

    font-size: .70rem;
    font-weight: 900;
    letter-spacing: .18em;

    text-align: center;
}


/* RUN THE EFFECT */

.transition-effect.active .transition-darken {
    animation:
        transitionDarken 2.0s ease forwards;
}

.transition-effect.active .transition-flash {
    animation:
        transitionFlash 2.0s ease forwards;
}

.transition-effect.active .transition-energy {
    animation:
        energyWipe 2.0s cubic-bezier(.2,.8,.25,1) forwards;
}

.transition-effect.active .transition-scanlines {
    animation:
        scanlineFizzle 2.0s ease forwards;
}

.transition-effect.active .transition-brand {
    animation:
        brandStinger 2.0s cubic-bezier(.2,.9,.25,1) forwards;
}

.transition-effect.active .glitch-bar-1 {
    animation:
        glitchBarOne 2.0s ease forwards;
}

.transition-effect.active .glitch-bar-2 {
    animation:
        glitchBarTwo 2.0s ease forwards;
}

.transition-effect.active .glitch-bar-3 {
    animation:
        glitchBarThree 2.0s ease forwards;
}


/* KEYFRAMES */

@keyframes transitionDarken {

    0% {
        opacity: 0;
    }

    16% {
        opacity: .85;
    }

    72% {
        opacity: .92;
    }

    100% {
        opacity: 0;
    }
}


@keyframes transitionFlash {

    0% {
        opacity: 0;
        transform: scale(.35);
    }

    19% {
        opacity: .95;
        transform: scale(1.0);
    }

    31% {
        opacity: .18;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}


@keyframes energyWipe {

    0% {
        left: -60%;
        opacity: 0;
    }

    12% {
        opacity: .9;
    }

    61% {
        opacity: 1;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}


@keyframes scanlineFizzle {

    0% {
        opacity: 0;
        transform: translateY(-14%);
    }

    18% {
        opacity: .48;
    }

    60% {
        opacity: .26;
    }

    100% {
        opacity: 0;
        transform: translateY(14%);
    }
}


@keyframes brandStinger {

    0% {
        opacity: 0;

        transform:
            scale(.70)
            translateY(8px);

        filter:
            blur(12px);
    }

    21% {
        opacity: 1;

        transform:
            scale(1.055)
            translateY(0);

        filter:
            blur(0);
    }

    58% {
        opacity: 1;

        transform:
            scale(1)
            translateY(0);

        filter:
            blur(0);
    }

    78% {
        opacity: 1;
    }

    100% {
        opacity: 0;

        transform:
            scale(1.10)
            translateY(-3px);

        filter:
            blur(6px);
    }
}


@keyframes glitchBarOne {

    0%,
    17% {
        opacity: 0;
        transform: translateX(-18%);
    }

    21% {
        opacity: .85;
        transform: translateX(10%);
    }

    28% {
        opacity: 0;
        transform: translateX(28%);
    }

    100% {
        opacity: 0;
    }
}


@keyframes glitchBarTwo {

    0%,
    34% {
        opacity: 0;
        transform: translateX(20%);
    }

    38% {
        opacity: .72;
        transform: translateX(-8%);
    }

    44% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 0;
    }
}


@keyframes glitchBarThree {

    0%,
    54% {
        opacity: 0;
        transform: translateX(-15%);
    }

    58% {
        opacity: .70;
        transform: translateX(10%);
    }

    66% {
        opacity: 0;
        transform: translateX(24%);
    }

    100% {
        opacity: 0;
    }
}


/* CTA */

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;

    padding: 36px;

    border: 1px solid rgba(124,255,107,.18);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(124,255,107,.12),
            transparent 36%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(70,184,255,.12),
            transparent 36%
        ),
        var(--card);
}

.cta h2 {
    margin: 0 0 8px;

    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.cta p {
    margin: 0;

    max-width: 670px;
    color: var(--muted);
}


/* PORTFOLIO / CONTACT PAGE SUPPORT */

.page-hero {
    padding: 82px 0 42px;
}

.page-hero h1 {
    max-width: 950px;
    font-size: clamp(3.2rem, 8vw, 6rem);
}

.page-hero p {
    max-width: 760px;

    color: var(--muted);
    font-size: 1.15rem;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 28px;
}

.filter-btn {
    border: 1px solid var(--line);

    background: var(--card);
    color: var(--muted);

    padding: 10px 15px;

    border-radius: 999px;

    font-weight: 800;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--text);
    border-color: rgba(124,255,107,.35);
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: 22px;
}

.contact-card {
    min-height: 100%;
}

.contact-list {
    display: grid;

    gap: 12px;

    margin-top: 22px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--muted);
}

.contact-item strong {
    color: var(--text);
}

form {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

label {
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;

    border: 1px solid var(--line);

    background: #0b1017;
    color: var(--text);

    border-radius: 14px;

    padding: 13px 14px;

    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(70,184,255,.6);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-note {
    color: var(--muted);
    font-size: .9rem;
}


/* FOOTER */

footer {
    margin-top: 70px;

    padding: 30px 0 42px;

    border-top: 1px solid var(--line);

    color: var(--muted);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}


/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(18px);

    transition: .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 420px;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .feature-strip {
        grid-template-columns: 1fr 1fr;
    }

    .work-card,
    .work-card.wide {
        grid-column: span 6;
    }

    .cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .transition-brand {
        width: min(360px, 70%);
    }

}


@media (max-width: 680px) {

    .nav-links {
        display: none;

        position: absolute;

        left: 16px;
        right: 16px;
        top: 68px;

        padding: 16px;

        background: #0b1017;

        border: 1px solid var(--line);
        border-radius: 18px;

        box-shadow: var(--shadow);

        flex-direction: column;
        align-items: stretch;
    }

    .nav-links.open {
        display: flex;
    }

    .menu-btn {
        display: inline-flex;
    }

    .desktop-cta {
        display: none;
    }

    .hero {
        padding-top: 54px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 18vw, 5.5rem);
    }

    .hero-art {
        min-height: 370px;
    }

    .poster-main {
        inset: 16px 20px 18px 8px;
    }

    .poster-small {
        width: 145px;
        height: 185px;
    }

    .grid-3,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .work-card,
    .work-card.wide {
        grid-column: 1 / -1;
    }

    .work-card {
        min-height: 340px;
    }

    .portfolio-image-area {
        padding: 16px 16px 110px 16px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;

        font-size: 1.5rem;
    }

    .transition-brand {
        width: 72%;
    }

    .transition-logo-image {
        max-height: 150px;
    }

    .transition-tagline {
        font-size: .56rem;
        letter-spacing: .13em;
    }

}

/* Gamified / Motion Graphic Video */

.motion-work-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.motion-video-wrap {
    width: 100%;
    background: #050505;
    overflow: hidden;
}

.portfolio-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    background: #050505;
}

/* Give the video description its own space */
.motion-work-card .work-label {
    position: relative;

    left: auto;
    right: auto;
    bottom: auto;

    margin: 16px;

    flex-shrink: 0;
}