.big-image {
    padding: var(--section-padding);

    .bib-inner {
        width: 100%;
        max-width: var(--page-max-width);
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-header,
    .section-header.center {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .section-subtitle {
        max-width: 60ch;
        margin-inline: auto;
    }

    .bib-media {
        position: relative;
        width: calc(var(--page-max-width) * 0.7);
        max-width: 100%;
        border: var(--ncs-container-strong);
        border-radius: var(--border-radius);
        overflow: hidden;
        line-height: 0;
        box-shadow: 0 28px 64px rgba(2, 20, 44, 0.16), 0 10px 28px rgba(2, 20, 44, 0.08), 0 0 0 1px color-mix(in srgb, var(--text) 7%, transparent);

        &[data-playing="true"] .bib-play-btn {
            display: none;
        }
    }

    .bib-img {
        display: block;
        width: 100%;
        height: auto;
    }

    .bib-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: #000;
        border: 0;

        &[hidden] {
            display: none;
        }
    }

    .bib-play-btn {
        position: absolute;
        inset: 0;
        margin: auto;
        width: clamp(64px, 9vw, 88px);
        height: clamp(64px, 9vw, 88px);
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 50%;
        background: color-mix(in srgb, var(--background) 35%, transparent);
        backdrop-filter: blur(8px) saturate(140%);
        box-shadow: 0 10px 30px rgba(2, 20, 44, 0.25);
        color: var(--text);
        cursor: pointer;
        z-index: 2;
        transition: transform 0.2s ease, background 0.2s ease;

        &:hover,
        &:focus-visible {
            transform: scale(1.06);
            background: color-mix(in srgb, var(--background) 55%, transparent);
            outline: none;
        }
    }

    .bib-play-icon {
        width: 40%;
        height: 40%;
        background: currentColor;
        mask: url("https://cdn.maestra.ai/astro-images/icons/Solar%20Bold/Video,%20Audio,%20Sound/Play.svg") center / contain no-repeat;
    }

    @media (max-width: 768px) {
        .bib-media {
            width: 100%;
        }
    }
}
