.station-header-image {
    width: 100%;
    height: 15rem;
    overflow: hidden;

    @media (min-width: 768px) {
        height: 30rem;
    }

    @media (min-width: 1024px) {
        height: 50rem;
    }

    img {
        object-fit: cover;
        object-position: bottom;
        height: 100%;
        min-width: 100%;
    }
}

.station-header-section {
    position: relative;

    .station-header-image {
        position: relative;
    }

    .station-header-title {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        
        h1 {
            color: var(--text-accent);
            font-size: 3.75rem;
            line-height: 1;

            @media (min-width: 768px) {
                font-size: 6rem;
                line-height: 1;
            }
        }
    }
}

.sphere-viewer {
    width: 100%;
    aspect-ratio: 16/9;
}