.cursor-provider {
    cursor: none;
}
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
}
.cursor__layout {
    display: grid;
    grid-template: auto auto / auto auto;
}

.cursor__media {
    display: grid;
    grid-column: 1;
    grid-row: 1;
}
.cursor__media img {
    grid-row-start: 1;
    grid-column-start: 1;
}

.cursor__text {
    grid-column: 2;
    grid-row: 2;
    position: relative;
}

.team__frame-wrapper {
    top: calc(var(--nav-height) + 1rem);
    /* Todo not sure what makes the most sense here, this keeps it from overflowing off the bottom */
    margin-bottom: calc(var(--frame-height));
}
.team__frame {
    height: var(--frame-height);
    width: var(--frame-width);
    aspect-ratio: var(--frame-aspect-ratio);
    border-radius: var(--frame-border-radius);
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
}

