.box-lacrosse-page {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.85rem;
    box-sizing: border-box;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid #d9deef;
    border-radius: 18px;
    padding: 1rem;
    background:
        radial-gradient(circle at top left, rgba(0, 10, 61, 0.12), transparent 34rem),
        linear-gradient(135deg, #ffffff 0%, #f6f8ff 100%);
    box-shadow: 0 12px 34px rgba(0, 10, 61, 0.08);
}

.eyebrow {
    margin: 0;
    color: #31407a;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-copy {
    max-width: 920px;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-fact {
    display: flex;
    flex: 1 1 160px;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    padding: 0.85rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e6f4;
}

.fact-number {
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 700;
    color: #000A3D;
}

.fact-label {
    font-size: 0.9rem;
    line-height: 1.35;
    color: #333;
}

.article-heading {
    font-size: clamp(1.55rem, 4vw, 2.45rem);
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    color: #11162e;
}

.article-subheading {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    line-height: 1.25;
    margin: 0;
    font-weight: 700;
    color: #11162e;
}

.article-section {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.article-paragraph {
    margin: 0;
    font-size: 1rem;
    line-height: 1.62;
    color: #222;
}

.article-list {
    margin: 0;
    padding-left: 1.25rem;
}

.article-list li {
    margin: 0.35rem 0;
    line-height: 1.55;
    font-size: 0.98rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
}

.method-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border: 1px solid #e0e4ef;
    border-radius: 16px;
    padding: 0.9rem;
    background: #fbfcff;
}

.table-wrap {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid #d7ddec;
    background: #ffffff;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.summary-table th,
.summary-table td {
    border-bottom: 1px solid #e5e8f1;
    padding: 0.65rem;
    vertical-align: top;
    text-align: left;
    word-wrap: break-word;
}

.summary-table th {
    background: #000A3D;
    color: #ffffff;
    font-weight: 700;
}

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

.compact-event-table th:first-child,
.compact-event-table td:first-child {
    width: 34%;
}

.controls-section {
    border-top: 1px solid #e5e8f1;
    padding-top: 0.9rem;
}

.event-controls {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: #f7f9ff;
    border: 1px solid #dfe5f4;
}

.filter-label {
    font-weight: 700;
    color: #11162e;
}

.event-filter {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c8d0e3;
    border-radius: 12px;
    padding: 0.7rem 0.8rem;
    font-family: inherit;
    font-size: 1rem;
    background: #ffffff;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-button {
    border: 1px solid #000A3D;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background: #000A3D;
    color: #ffffff;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.event-button:focus-visible,
.event-filter:focus-visible,
.event-card summary:focus-visible {
    outline: 3px solid rgba(0, 10, 61, 0.28);
    outline-offset: 3px;
}

.event-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.event-card {
    border: 1px solid #d9deef;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 10, 61, 0.06);
}

.event-card[hidden] {
    display: none;
}

.event-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.85rem;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(90deg, #ffffff 0%, #f3f6ff 100%);
}

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

.event-card summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #000A3D;
    color: #ffffff;
    font-weight: 700;
}

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

.event-card summary span {
    flex: 0 0 auto;
    color: #31407a;
    font-weight: 700;
    font-size: 0.92rem;
}

.event-card summary strong {
    flex: 1 1 auto;
    min-width: 0;
    color: #11162e;
    font-size: 1rem;
    line-height: 1.3;
}

.event-definition-list {
    display: grid;
    grid-template-columns: minmax(7.5rem, 0.42fr) minmax(0, 1fr);
    margin: 0;
    border-top: 1px solid #e5e8f1;
}

.event-definition-list dt,
.event-definition-list dd {
    margin: 0;
    padding: 0.72rem 0.85rem;
    border-bottom: 1px solid #eef1f7;
    line-height: 1.5;
}

.event-definition-list dt {
    font-weight: 700;
    color: #11162e;
    background: #f8faff;
}

.event-definition-list dd {
    color: #222;
}

.event-definition-list dt:last-of-type,
.event-definition-list dd:last-of-type {
    border-bottom: 0;
}

.source-section {
    border-top: 1px solid #e5e8f1;
    padding-top: 0.9rem;
}

@media (min-width: 780px) {
    .box-lacrosse-page {
        gap: 1.15rem;
        padding: 1rem 0.75rem 1.25rem;
    }

    .hero-panel {
        padding: 1.25rem;
    }

    .intro-grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
        align-items: start;
    }

    .event-controls {
        flex-direction: row;
        align-items: center;
    }

    .filter-label {
        flex: 0 0 auto;
    }

    .event-filter {
        flex: 1 1 auto;
    }

    .button-row {
        flex: 0 0 auto;
    }
}

@media (max-width: 560px) {
    .box-lacrosse-page {
        margin: 0;
        padding: 0.7rem;
    }

    .hero-panel,
    .method-card,
    .event-controls,
    .event-card {
        border-radius: 12px;
    }

    .compact-event-table th,
    .compact-event-table td {
        padding: 0.55rem;
        font-size: 0.92rem;
    }

    .event-card summary {
        align-items: flex-start;
        flex-direction: row;
        padding: 0.75rem;
    }

    .event-card summary span {
        flex-basis: 5.7rem;
        font-size: 0.86rem;
    }

    .event-definition-list {
        grid-template-columns: 1fr;
    }

    .event-definition-list dt {
        border-bottom: 0;
        padding-bottom: 0.25rem;
    }

    .event-definition-list dd {
        padding-top: 0.25rem;
    }

    .hero-fact {
        flex-basis: 100%;
    }
}
