.page-body.rugby-page {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.85rem;
    max-width: 980px;
    margin: 0 auto;
}

.hero-card,
.info-panel,
.season-card,
.article-section {
    background: #ffffff;
    border: 1px solid #e3e6ef;
    border-radius: 8px;
}

.hero-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

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

.main-heading {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.2;
    color: #111827;
}

.subheading {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #111827;
}

.article-section {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.9rem;
}

.para {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #1f2937;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: #eef3ff;
    border: 1px solid #d6e2ff;
    color: #183a7a;
    font-size: 0.88rem;
    font-weight: 600;
}

.content-grid.two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.content-grid.two-col > * {
    flex: 1 1 320px;
}

.info-panel {
    padding: 0.85rem;
}

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

.bullet-item {
    margin: 0.28rem 0;
    line-height: 1.55;
    color: #1f2937;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #d9deea;
    border-radius: 8px;
    background: #ffffff;
}

.event-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.94rem;
    line-height: 1.45;
}

.event-table thead th {
    background: #f3f6fc;
    color: #111827;
    font-weight: 600;
    text-align: left;
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid #d9deea;
}

.event-table td {
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid #e6eaf3;
    vertical-align: top;
    color: #1f2937;
}

.event-table tbody tr:nth-child(even) {
    background: #fbfcff;
}

.section-head-with-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: space-between;
    align-items: center;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.action-button {
    appearance: none;
    border: 1px solid #c8d2e8;
    background: #ffffff;
    color: #0f172a;
    border-radius: 6px;
    padding: 0.45rem 0.7rem;
    font: inherit;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.action-button:hover,
.action-button:focus-visible {
    background: #f3f6fc;
    border-color: #9fb2dd;
    outline: none;
    transform: translateY(-1px);
}

.season-card-stack {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.season-card {
    overflow: hidden;
}

.season-summary {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem;
    cursor: pointer;
    background: #f7f9fd;
    min-height: 56px;
}

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

.season-summary::marker {
    display: none;
}

.season-summary:hover {
    background: #f1f5fc;
}

.season-summary:focus-visible {
    outline: 2px solid #2f5dc6;
    outline-offset: -2px;
}

.season-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.season-tag {
    font-size: 0.86rem;
    color: #334155;
    background: #e9eef9;
    border: 1px solid #d5def2;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.season-grid {
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr;
    margin: 0;
    border-top: 1px solid #e3e6ef;
}

.season-grid dt,
.season-grid dd {
    margin: 0;
    padding: 0.78rem 1rem;
    border-bottom: 1px solid #edf0f7;
}

.season-grid dt {
    font-weight: 600;
    color: #0f172a;
    background: #fbfcff;
}

.season-grid dd {
    color: #1f2937;
    background: #ffffff;
}

@media (max-width: 760px) {
    .page-body.rugby-page {
        padding: 0.7rem;
        gap: 0.85rem;
    }

    .main-heading {
        font-size: 1.45rem;
        line-height: 1.22;
    }

    .subheading {
        font-size: 1.08rem;
    }

    .para,
    .event-table {
        font-size: 0.93rem;
    }

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

    .season-grid dt {
        border-bottom: none;
        padding-bottom: 0.28rem;
    }

    .season-grid dd {
        padding-top: 0.18rem;
    }

    .section-head-with-actions {
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .hero-card,
    .article-section,
    .info-panel {
        padding: 0.8rem;
    }

    .chip {
        font-size: 0.84rem;
    }

    .season-summary {
        padding: 0.8rem 0.85rem;
    }
}
