.fsip-schedule,
.fsip-event-detail {
    --fsip-orange: #ff4b00;
    --fsip-bg: #111;
    --fsip-panel: #1f1f1f;
    --fsip-line: rgba(255,255,255,.08);
    --fsip-text: #fff;
    --fsip-muted: rgba(255,255,255,.72);
    --fsip-faint: rgba(255,255,255,.5);
    box-sizing: border-box;
    color: var(--fsip-text);
    font-family: inherit;
}

.fsip-schedule *,
.fsip-event-detail * {
    box-sizing: border-box;
}

.fsip-schedule {
    background-color: #050505;
    background-size: cover;
    background-position: center;
    min-height: 560px;
    padding: clamp(18px, 3vw, 38px);
    border-radius: 0;
}

.fsip-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 26px;
    align-items: end;
}

.fsip-tab {
    appearance: none;
    border: 0;
    border-bottom: 4px solid var(--fsip-orange);
    background: transparent;
    color: var(--fsip-muted);
    font-weight: 800;
    padding: 15px 12px;
    text-align: center;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, opacity .18s ease;
}

.fsip-tab.is-active,
.fsip-tab:hover,
.fsip-tab:focus {
    background: var(--fsip-orange);
    color: #fff;
    outline: none;
}

.fsip-panel {
    display: none;
}

.fsip-panel.is-active {
    display: block;
}

.fsip-record {
    text-align: center;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
    margin: 0 0 20px;
    color: rgba(255,255,255,.86);
}

.fsip-games {
    width: min(780px, 100%);
    margin: 0 auto;
}

.fsip-game-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 120px;
    align-items: center;
    gap: 18px;
    min-height: 104px;
    padding: 10px 0;
}

.fsip-game-main {
    text-align: center;
}

.fsip-date {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.fsip-score {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    letter-spacing: .01em;
    margin: 2px 0;
}

.fsip-location {
    font-size: 14px;
    color: #fff;
    margin-top: 2px;
}

.fsip-event-link {
    display: inline-block;
    color: var(--fsip-orange);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 6px;
}

.fsip-event-link:hover,
.fsip-event-link:focus {
    color: #fff;
    text-decoration: underline;
}

.fsip-game-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fsip-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    width: 78px;
    height: 78px;
    max-width: 100%;
}

.fsip-logo-large {
    width: 118px;
    height: 118px;
}

.fsip-logo-fallback {
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.fsip-logo-large.fsip-logo-fallback {
    font-size: 30px;
}

.fsip-visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.fsip-empty {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.fsip-event-detail {
    background: #242424;
    color: #fff;
    padding: clamp(22px, 4vw, 44px);
}

.fsip-event-detail h1,
.fsip-event-detail h2 {
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.15;
}

.fsip-event-title {
    color: var(--fsip-orange) !important;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
}

.fsip-matchup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3vw, 30px);
    margin: 28px 0 42px;
    flex-wrap: wrap;
}

.fsip-matchup-team {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 800;
}

.fsip-vs {
    color: var(--fsip-orange);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.fsip-detail-table,
.fsip-results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 34px;
    color: #fff;
    background: rgba(0,0,0,.08);
}

.fsip-detail-table th,
.fsip-detail-table td,
.fsip-results-table th,
.fsip-results-table td {
    border: 1px solid var(--fsip-line);
    padding: 10px 12px;
    text-align: center;
}

.fsip-detail-table th,
.fsip-results-table th {
    background: rgba(0,0,0,.16);
    font-size: 13px;
    font-weight: 900;
}

.fsip-results-table td:first-child,
.fsip-results-table th:first-child {
    text-align: left;
}

.fsip-venue {
    margin-bottom: 34px;
}

.fsip-venue-name {
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    background: rgba(0,0,0,.18);
    border: 1px solid var(--fsip-line);
    border-bottom: 0;
    padding: 6px 8px;
}

.fsip-map-wrap {
    position: relative;
    height: min(360px, 46vw);
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--fsip-line);
    background: #111;
}

.fsip-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.fsip-venue-address {
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    padding: 8px;
}

@media (max-width: 700px) {
    .fsip-tabs {
        gap: 6px;
    }

    .fsip-tab {
        font-size: 13px;
        padding: 12px 8px;
    }

    .fsip-game-card {
        grid-template-columns: 80px minmax(0, 1fr) 80px;
        gap: 8px;
        min-height: 96px;
    }

    .fsip-logo {
        width: 60px;
        height: 60px;
    }

    .fsip-logo-large {
        width: 86px;
        height: 86px;
    }

    .fsip-date,
    .fsip-location,
    .fsip-event-link {
        font-size: 12px;
    }

    .fsip-detail-table,
    .fsip-detail-table thead,
    .fsip-detail-table tbody,
    .fsip-detail-table th,
    .fsip-detail-table td,
    .fsip-detail-table tr {
        display: block;
    }

    .fsip-detail-table thead {
        display: none;
    }

    .fsip-detail-table td {
        text-align: left;
    }

    .fsip-matchup-team {
        width: 100%;
        justify-content: center;
    }
}
