/*
        single filmmaker page - styled like film page
    */
    
    .filmmaker-hero-container {
        grid-column: 1 / -1;
        position: relative;
        height: auto;
        margin-block: var(--space-5xl) var(--space-3xl);
    }

    .filmmaker-hero {
        position: relative;
        /* background: var(--bg-main); */
        overflow: hidden;
        /* aspect-ratio: 16 / 9; */
        /* display: flex; */
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .filmmaker-hero img {
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
    }

    .filmmaker-info {
        position: absolute;
        /* bottom: var(--space-xl); */
        left: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        max-width: 100%;
    }

    .filmmaker-name {
        font-size: var(--fs-display);
        font-weight: normal;
        color: var(--accent);
        margin: 0;
        line-height: 1.1;
        /* text-shadow: var(--shadow); */
    }

    .filmmaker-title {
        font-size: var(--fs-md);
        color: var(--accent);
        text-shadow: var(--shadow);
        font-weight: normal;
        margin: 0;
    }

    .filmmaker-bio-section {
        grid-column: 1 / 6;
        margin-bottom: var(--space-4xl);
    }

    .filmmaker-bio-section p {
        font-size: var(--fs-md);
        color: var(--bg-main);
        line-height: 1.4;
        max-width: 75ch;
        margin-bottom: var(--space-md);
    }

    .filmmaker-films-section {
        grid-column: 1 / -1;
        margin-bottom: var(--space-4xl);
    }

    .filmmaker-films-title {
        font-size: var(--fs-lg);
        color: var(--bg-main);
        font-weight: normal;
        margin-bottom: var(--space-xl);
        text-transform: uppercase;
    }

    /* override film-card styles for filmmaker page context */
    .filmmaker-films-section .cards-container {
        grid-column: 1 / -1;
    }

    @media (max-width: 768px) {
        .filmmaker-hero-container {
            margin-bottom: var(--space-xl);
        }

        .filmmaker-hero {
            aspect-ratio: 4 / 3;
        }

        .filmmaker-info {
            position: inherit;
            top: 0;
            left: 0;
        }

        .filmmaker-name {
            font-size: var(--fs-lg);
            text-shadow: none;
        }

        .filmmaker-title {
            font-size: var(--fs-sm);
            text-shadow: none;
        }

        .filmmaker-bio-section {
            grid-column: 1 / -1;
            margin-bottom: var(--space-2xl);
        }

        .filmmaker-bio-section p {
            font-size: var(--fs-sm);
        }

        .filmmaker-films-title {
            font-size: var(--fs-md);
        }
    }
