.slamball-page,
.slamball-page *,
.slamball-page *::before,
.slamball-page *::after {
    box-sizing: border-box;
}

.slamball-wrap {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 1.15rem 0;
}

.hero-panel {
    width: 100%;
    border: 1px solid #dfe3ee;
    border-radius: 18px;
    padding: 1.05rem 1.1rem;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 58%, #fff7ee 100%);
    box-shadow: 0 12px 30px rgba(0, 10, 61, 0.08);
}

.eyebrow {
    margin: 0 0 0.35rem 0;
    color: #000A3D;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.main-heading {
    margin: 0;
    font-size: clamp(1.85rem, 3.3vw, 2.85rem);
    line-height: 1.12;
    color: #11172f;
}

.deck {
    margin: 0.65rem 0 0 0;
    font-size: clamp(1rem, 1.55vw, 1.15rem);
    line-height: 1.62;
    color: #26304a;
    max-width: 82ch;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cfd7ea;
    border-radius: 999px;
    padding: 0.38rem 0.7rem;
    background: #ffffff;
    color: #17223c;
    font-size: 0.92rem;
    font-weight: 600;
}

.slamball-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.95rem;
    margin-top: 1rem;
}

.slamball-main,
.slamball-aside {
    min-width: 0;
}

.card {
    border: 1px solid #e4e6ed;
    border-radius: 14px;
    padding: 1rem;
    background: #ffffff;
    min-width: 0;
}

.subheading {
    margin: 0;
    color: #11172f;
    font-size: clamp(1.16rem, 1.85vw, 1.38rem);
    line-height: 1.25;
}

.minor-heading {
    margin: 1rem 0 0 0;
    color: #11172f;
    font-size: 1.06rem;
    line-height: 1.25;
}

.para {
    margin: 0.7rem 0 0 0;
    color: #26304a;
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 82ch;
}

.table-shell {
    margin-top: 0.75rem;
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dde2ef;
    border-radius: 12px;
    background: #ffffff;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.event-table {
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.92rem;
}

.event-table th,
.event-table td {
    border-bottom: 1px solid #e6e9f2;
    padding: 0.72rem 0.78rem;
    text-align: left;
    vertical-align: top;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: auto;
}

.event-table th {
    background: #f3f6fb;
    color: #121b32;
    font-weight: 600;
}

.event-table tr:last-child td {
    border-bottom: 0;
}

.mobile-event-list {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.event-detail-card {
    border: 1px solid #dfe4ef;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 10, 61, 0.06);
}

.event-detail-card summary {
    cursor: pointer;
    padding: 0.9rem 2.55rem 0.9rem 0.95rem;
    color: #11172f;
    font-weight: 600;
    line-height: 1.35;
    list-style: none;
    position: relative;
    background: #f6f8fc;
}

.event-detail-card summary::-webkit-details-marker {
    display: none;
}

.event-detail-card summary::after {
    content: "+";
    position: absolute;
    right: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.42rem;
    height: 1.42rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000A3D;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
}

.event-detail-card[open] summary::after {
    content: "-";
}

.deflist {
    margin: 0;
    padding: 0;
}

.deflist div {
    display: grid;
    grid-template-columns: minmax(10rem, 34%) minmax(0, 1fr);
    border-top: 1px solid #e8ebf3;
}

.deflist dt,
.deflist dd {
    margin: 0;
    padding: 0.78rem 0.9rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.deflist dt {
    font-weight: 600;
    color: #14203d;
    background: #fbfcff;
}

.deflist dd {
    color: #26304a;
}

.bullet-list {
    margin: 0.65rem 0 0 0;
    padding-left: 1.15rem;
}

.bullet-item {
    margin: 0.35rem 0;
    line-height: 1.6;
    color: #26304a;
}

@media (min-width: 1180px) {
    .slamball-grid {
        grid-template-columns: minmax(0, 1fr) 420px;
        align-items: start;
    }

    .aside-card {
        position: sticky;
        top: 0.9rem;
        align-self: start;
    }
}

@media (max-width: 1240px) {
    .table-shell {
        display: none;
    }

    .mobile-event-list {
        display: flex;
    }
}

@media (max-width: 760px) {
    .pill {
        width: 100%;
        justify-content: center;
    }

    .deflist div {
        grid-template-columns: 1fr;
    }

    .deflist dt {
        padding-bottom: 0.22rem;
    }

    .deflist dd {
        padding-top: 0.22rem;
    }
}

@media (min-width: 761px) {
    .event-detail-card summary:focus-visible,
    .table-shell:focus-visible {
        outline: 3px solid #f2a33a;
        outline-offset: 3px;
    }
}
