:root {
    --hub-navy: #0b234e;
    --hub-navy-deep: #061630;
    --hub-gold: #f0b323;
    --hub-gold-dark: #9d6500;
    --hub-ink: #172033;
    --hub-muted: #667085;
    --hub-line: #d9dee8;
    --hub-surface: #ffffff;
    --hub-page: #f4f6f9;
    --hub-basketball: #b45512;
    --hub-baseball: #b4233f;
    --hub-football: #123b7a;
    --hub-cheer: #267c7c;
    --hub-font: "Manrope", Arial, sans-serif;
    --hub-display: "Bebas Neue", Impact, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    color: var(--hub-ink);
    background: var(--hub-page);
    font-family: var(--hub-font);
    font-size: 16px;
    line-height: 1.6;
}

body,
button,
input,
select {
    letter-spacing: 0;
}

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

a {
    color: inherit;
}

button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
select:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(240, 179, 35, 0.55);
    outline-offset: 2px;
}

.hub-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 10px 14px;
    color: #ffffff;
    background: var(--hub-navy);
    border-radius: 4px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.hub-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 72px;
    color: #ffffff;
    background: var(--hub-navy-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hub-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.hub-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.hub-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.hub-brand span {
    white-space: nowrap;
}

.hub-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hub-nav a {
    position: relative;
    padding: 24px 0 21px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.hub-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    height: 3px;
    background: var(--hub-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.hub-nav a:hover,
.hub-nav a:focus-visible {
    color: #ffffff;
}

.hub-nav a:hover::after,
.hub-nav a:focus-visible::after {
    transform: scaleX(1);
}

.hub-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
}

.hub-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    color: #ffffff;
    background-color: var(--hub-navy);
    background-image: url("/images/homepage-hero.png");
    background-position: center 42%;
    background-size: cover;
}

.hub-hero__shade {
    position: absolute;
    inset: 0;
    background: rgba(6, 22, 48, 0.82);
}

.hub-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    padding: 42px 0 54px;
    text-align: center;
}

.hub-hero__logo {
    width: 206px;
    height: 206px;
    margin-bottom: 18px;
    object-fit: contain;
}

.hub-eyebrow {
    margin: 0 0 8px;
    color: var(--hub-gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hub-eyebrow--dark {
    color: var(--hub-gold-dark);
}

.hub-hero h1,
.section-heading h2 {
    margin: 0;
    font-family: var(--hub-display);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.hub-hero h1 {
    color: #ffffff;
    font-size: 72px;
}

.hub-hero__summary {
    max-width: 680px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.hub-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.hub-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 18px;
    color: var(--hub-navy);
    background: #ffffff;
    border: 1px solid var(--hub-line);
    border-radius: 6px;
    font: 800 14px/1.2 var(--hub-font);
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hub-button:hover {
    color: var(--hub-navy);
    background: #f9fafb;
    border-color: #b6bfce;
    transform: translateY(-1px);
}

.hub-button--primary {
    color: var(--hub-navy-deep);
    background: var(--hub-gold);
    border-color: var(--hub-gold);
}

.hub-button--primary:hover {
    color: #ffffff;
    background: var(--hub-gold-dark);
    border-color: var(--hub-gold-dark);
}

.hub-button--secondary {
    color: #ffffff;
    background: rgba(6, 22, 48, 0.42);
    border-color: rgba(255, 255, 255, 0.55);
}

.hub-button--secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

.hub-button--compact {
    min-height: 40px;
    padding: 8px 14px;
    background: var(--hub-surface);
}

.calendar-section,
.sports-section {
    padding: 74px 0;
}

.sports-section {
    background: #ffffff;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: end;
    gap: 32px;
    margin-bottom: 28px;
}

.section-heading h2 {
    color: var(--hub-navy);
    font-size: 54px;
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--hub-muted);
    font-size: 15px;
}

.calendar-panel {
    overflow: hidden;
    background: var(--hub-surface);
    border: 1px solid var(--hub-line);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(11, 35, 78, 0.09);
}

.calendar-toolbar {
    display: grid;
    grid-template-columns: auto minmax(180px, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 78px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--hub-line);
}

.calendar-toolbar__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--hub-navy);
    background: #ffffff;
    border: 1px solid var(--hub-line);
    border-radius: 6px;
}

.icon-button:hover {
    color: #ffffff;
    background: var(--hub-navy);
    border-color: var(--hub-navy);
}

.calendar-toolbar__title {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--hub-navy);
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-toolbar__actions {
    display: flex;
    justify-content: flex-end;
}

.select-control,
.mobile-view-select {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hub-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.select-control select,
.mobile-view-select select {
    width: 150px;
    height: 40px;
    padding: 0 34px 0 11px;
    color: var(--hub-ink);
    background: #ffffff;
    border: 1px solid var(--hub-line);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
}

.calendar-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 22px;
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid var(--hub-line);
}

.calendar-filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.calendar-filter-group legend {
    float: left;
    width: auto;
    margin: 0 4px 0 0;
    color: var(--hub-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.filter-check {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 7px 10px;
    color: #344054;
    background: #ffffff;
    border: 1px solid var(--hub-line);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.filter-check:has(input:checked) {
    color: var(--hub-navy);
    border-color: #9aa8bd;
    box-shadow: inset 0 0 0 1px #9aa8bd;
}

.filter-check input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--hub-navy);
}

.filter-check__dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    background: var(--hub-muted);
    border-radius: 50%;
}

.filter-check--basketball .filter-check__dot {
    background: var(--hub-basketball);
}

.filter-check--baseball .filter-check__dot {
    background: var(--hub-baseball);
}

.filter-check--football .filter-check__dot {
    background: var(--hub-football);
}

.calendar-view-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--hub-line);
}

.segmented-control {
    display: grid;
    grid-template-columns: repeat(4, 78px);
    overflow: hidden;
    border: 1px solid var(--hub-line);
    border-radius: 6px;
}

.segmented-control button {
    height: 38px;
    padding: 0 10px;
    color: var(--hub-muted);
    background: #ffffff;
    border: 0;
    border-right: 1px solid var(--hub-line);
    font-size: 12px;
    font-weight: 800;
}

.segmented-control button:last-child {
    border-right: 0;
}

.segmented-control button:hover,
.segmented-control button.is-active {
    color: #ffffff;
    background: var(--hub-navy);
}

.mobile-view-select {
    display: none;
}

.calendar-status {
    min-width: 0;
    margin: 0;
    color: var(--hub-muted);
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}

.calendar-status.is-error {
    color: #a3112b;
}

.calendar-stage {
    position: relative;
    min-height: 560px;
    padding: 20px;
}

.calendar-loading {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
}

.calendar-loading.is-visible {
    display: flex;
}

.calendar-spinner {
    width: 38px;
    height: 38px;
    border: 4px solid #dce2eb;
    border-top-color: var(--hub-gold-dark);
    border-radius: 50%;
    animation: hub-spin 700ms linear infinite;
}

@keyframes hub-spin {
    to {
        transform: rotate(360deg);
    }
}

.calendar-noscript {
    margin: 0;
    padding: 18px 20px;
    color: #a3112b;
    background: #fff5f6;
}

.fc {
    color: var(--hub-ink);
    font-family: var(--hub-font);
    font-size: 13px;
}

.fc .fc-toolbar {
    display: none;
}

.fc-theme-standard td,
.fc-theme-standard th,
.fc-theme-standard .fc-scrollgrid {
    border-color: #dce2eb;
}

.fc .fc-col-header-cell-cushion,
.fc .fc-daygrid-day-number {
    color: var(--hub-navy);
    font-weight: 800;
    text-decoration: none;
}

.fc .fc-col-header-cell-cushion {
    padding: 10px 4px;
    font-size: 11px;
    text-transform: uppercase;
}

.fc .fc-daygrid-day-number {
    padding: 8px;
}

.fc .fc-day-today {
    background: #fff7df !important;
}

.fc .fc-daygrid-event,
.fc .fc-timegrid-event {
    min-height: 22px;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}

.fc .fc-event-title,
.fc .fc-event-time {
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc .fc-list {
    border-color: var(--hub-line);
}

.fc .fc-list-day-cushion {
    background: #edf1f6;
}

.fc .fc-list-event:hover td {
    background: #fff9e8;
}

.fc .fc-list-event-title a {
    color: var(--hub-ink);
    font-weight: 700;
    text-decoration: none;
}

.facebook-banner {
    padding: 44px 0;
    color: #ffffff;
    background: #1456a0;
    border-top: 4px solid var(--hub-gold);
    border-bottom: 4px solid var(--hub-gold);
}

.facebook-banner__inner {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
}

.facebook-banner__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: #1456a0;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    font-size: 42px;
}

.facebook-banner__copy {
    min-width: 0;
}

.facebook-banner__eyebrow {
    margin: 0 0 3px;
    color: #ffe19a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.facebook-banner__copy h2 {
    margin: 0;
    color: #ffffff;
    font-family: var(--hub-display);
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.facebook-banner__copy > p:last-child {
    max-width: 690px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.facebook-banner__button {
    min-width: 210px;
    color: #1456a0;
    background: #ffffff;
    border-color: #ffffff;
}

.facebook-banner__button:hover {
    color: var(--hub-navy-deep);
    background: #fff7df;
    border-color: #fff7df;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sport-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    color: var(--hub-ink);
    background: var(--hub-surface);
    border: 1px solid var(--hub-line);
    border-top: 5px solid var(--hub-gold);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sport-card:hover {
    color: var(--hub-ink);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11, 35, 78, 0.13);
}

.sport-card--basketball {
    border-top-color: var(--hub-basketball);
}

.sport-card--baseball {
    border-top-color: var(--hub-baseball);
}

.sport-card--football {
    border-top-color: var(--hub-football);
}

.sport-card--cheer {
    border-top-color: var(--hub-cheer);
}

.sport-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 188px;
    padding: 18px;
    background: #f6f8fb;
    border-bottom: 1px solid var(--hub-line);
}

.sport-card__logo img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.sport-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.sport-card__body p {
    margin: 0 0 5px;
    color: var(--hub-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.sport-card__body h3 {
    margin: 0 0 26px;
    color: var(--hub-navy);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.sport-card__body span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    color: var(--hub-navy);
    font-size: 12px;
    font-weight: 800;
}

.hub-footer {
    color: rgba(255, 255, 255, 0.74);
    background: var(--hub-navy-deep);
    border-top: 4px solid var(--hub-gold);
}

.hub-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 112px;
    padding: 20px 0;
}

.hub-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 800;
}

.hub-footer__brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.hub-footer p {
    margin: 0;
    font-size: 12px;
}

.hub-footer p:last-child {
    text-align: right;
}

.hub-footer a {
    color: var(--hub-gold);
}

.event-dialog {
    width: min(680px, calc(100% - 28px));
    max-height: calc(100vh - 40px);
    padding: 0;
    overflow: auto;
    background: #ffffff;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(6, 22, 48, 0.34);
}

.event-dialog::backdrop {
    background: rgba(6, 22, 48, 0.76);
}

.event-dialog__content {
    position: relative;
}

.event-dialog__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #ffffff;
    background: rgba(6, 22, 48, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
}

.event-dialog__image {
    width: 100%;
    height: 270px;
    object-fit: cover;
    background: #edf1f6;
}

.event-dialog__body {
    padding: 30px;
}

.event-dialog__badge {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 5px 9px;
    color: #ffffff;
    background: var(--hub-navy);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.event-dialog h2 {
    margin: 0;
    color: var(--hub-navy);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.22;
}

.event-dialog__details {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.event-dialog__details > div {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
}

.event-dialog__details dt {
    color: var(--hub-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.event-dialog__details dd {
    min-width: 0;
    margin: 0;
    color: var(--hub-ink);
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.event-dialog__description {
    margin: 0 0 24px;
    color: #475467;
    font-size: 14px;
    white-space: pre-line;
}

@media (max-width: 1020px) {
    .facebook-banner__inner {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .facebook-banner__mark {
        width: 68px;
        height: 68px;
        font-size: 36px;
    }

    .facebook-banner__button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .sports-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .calendar-toolbar {
        grid-template-columns: auto 1fr;
    }

    .calendar-toolbar__title {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: left;
    }

    .calendar-toolbar__actions {
        grid-column: 2;
        grid-row: 1;
    }

    .calendar-filter-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hub-shell {
        width: min(100% - 28px, 1180px);
    }

    .hub-header {
        height: 64px;
    }

    .hub-brand img {
        width: 44px;
        height: 44px;
    }

    .hub-brand span {
        font-size: 14px;
    }

    .hub-menu-toggle {
        display: inline-flex;
    }

    .hub-nav {
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 14px 14px;
        background: var(--hub-navy-deep);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 18px 30px rgba(6, 22, 48, 0.28);
    }

    .hub-nav.is-open {
        display: flex;
    }

    .hub-nav a {
        padding: 13px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hub-nav a:last-child {
        border-bottom: 0;
    }

    .hub-nav a::after {
        display: none;
    }

    .hub-hero,
    .hub-hero__content {
        min-height: 520px;
    }

    .hub-hero__content {
        padding: 36px 0 44px;
    }

    .hub-hero__logo {
        width: 178px;
        height: 178px;
    }

    .hub-hero h1 {
        font-size: 52px;
    }

    .hub-hero__summary {
        max-width: 520px;
        font-size: 16px;
    }

    .calendar-section,
    .sports-section {
        padding: 52px 0;
    }

    .facebook-banner {
        padding: 38px 0;
    }

    .facebook-banner__copy h2 {
        font-size: 38px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .section-heading h2 {
        font-size: 44px;
    }

    .calendar-toolbar {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .calendar-toolbar__nav {
        grid-column: 1;
        grid-row: 1;
    }

    .calendar-toolbar__actions {
        grid-column: 1;
        grid-row: 2;
        justify-content: flex-start;
    }

    .calendar-toolbar__title {
        grid-column: 1;
        grid-row: 3;
        font-size: 20px;
    }

    .calendar-filter-row {
        padding: 14px;
    }

    .calendar-filter-group {
        align-items: stretch;
    }

    .calendar-filter-group legend {
        width: 100%;
        margin-bottom: 3px;
    }

    .calendar-view-row {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 14px;
    }

    .segmented-control {
        display: none;
    }

    .mobile-view-select {
        display: flex;
    }

    .calendar-status {
        text-align: left;
    }

    .calendar-stage {
        min-height: 360px;
        padding: 10px;
    }

    .fc {
        font-size: 11px;
    }

    .fc .fc-col-header-cell-cushion {
        padding: 8px 2px;
        font-size: 9px;
    }

    .fc .fc-daygrid-day-number {
        padding: 5px;
    }

    .fc .fc-daygrid-event {
        min-height: 19px;
        margin-right: 1px;
        margin-left: 1px;
        padding: 1px 2px;
        font-size: 9px;
    }

    .hub-footer__inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 24px 0;
        text-align: center;
    }

    .hub-footer__brand {
        justify-content: center;
    }

    .hub-footer p:last-child {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .hub-hero h1 {
        font-size: 46px;
    }

    .hub-hero__actions,
    .hub-hero__actions .hub-button {
        width: 100%;
    }

    .facebook-banner__inner {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .facebook-banner__mark {
        margin: 0 auto;
    }

    .facebook-banner__copy > p:last-child {
        margin-right: auto;
        margin-left: auto;
    }

    .facebook-banner__button {
        grid-column: auto;
    }

    .filter-check {
        flex: 1 1 calc(50% - 8px);
        justify-content: flex-start;
    }

    .calendar-filter-group .filter-check {
        min-width: 132px;
    }

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

    .sport-card {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .sport-card__logo {
        height: 100%;
        min-height: 160px;
        padding: 12px;
        border-right: 1px solid var(--hub-line);
        border-bottom: 0;
    }

    .sport-card__logo img {
        height: 125px;
    }

    .sport-card__body {
        padding: 17px;
    }

    .sport-card__body h3 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .event-dialog__image {
        height: 210px;
    }

    .event-dialog__body {
        padding: 24px 18px;
    }

    .event-dialog h2 {
        padding-right: 34px;
        font-size: 23px;
    }

    .event-dialog__details > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
