/* ==========================================================================
   OHIO SPORTS HUB — SITE.CSS
   ==========================================================================

   TABLE OF CONTENTS

   01. Fonts
   02. Global Base Styles
   03. Headings & Article Typography
   04. Top Navigation Bar
   05. Team Logo Ribbon
   06. Admin Create Page
   07. Team Page Shared Styles
   08. Contact Page
   09. Support Page
   10. Editorial / Policy Links
   11. Footer
   12. Responsive Rules
   ========================================================================== */


/* ==========================================================================
   01. FONTS
   ========================================================================== */
@font-face {
    font-family: 'LocalAlfaSlab';
    src: url('../fonts/AlfaSlabOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* ==========================================================================
   02. GLOBAL BASE STYLES
   ========================================================================== */
* {
    letter-spacing: -0.2px;
}

body {
    font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #1E2229;
    /*padding-bottom: 70px;*/ /* match footer height */
}


/* ==========================================================================
   03. HEADINGS & ARTICLE TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5 {
    letter-spacing: 0px !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.around-web-title {
    font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: -0.3px !important;
    text-transform: none;
    color: #1E2229;
}

.around-web-publisher {
    font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #64748B;
}


/* ==========================================================================
   04. TOP NAVIGATION BAR
   ========================================================================== */
.buckeye-navbar {
    background-color: #1E2229 !important;
    padding: 15px 70px !important;
    border-bottom: 5px solid #D4A373;
    font-family: 'LocalAlfaSlab', serif !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.buckeye-brand-container {
    display: flex;
    align-items: center;
}

.buckeye-nav-item,
.buckeye-navbar a.buckeye-nav-item {
    font-family: 'LocalAlfaSlab', serif !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    margin-left: 35px;
    font-size: 1.10rem;
    letter-spacing: 0.5px;
    display: inline-block;
    text-shadow: -2px -2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, 2px 2px 0 #000000, 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.brand-text,
.buckeye-navbar .brand-text {
    color: #D4A373 !important;
    font-size: 2.5rem !important;
    margin-left: 0 !important;
    font-family: 'LocalAlfaSlab', serif !important;
    text-shadow: -2px -2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, 2px 2px 0 #000000 !important;
}

.buckeye-navbar a.buckeye-nav-item:hover,
.buckeye-brand-container:hover .brand-text {
    color: #FFFFFF !important;
    cursor: pointer;
}


/* ==========================================================================
   05. TEAM LOGO RIBBON
   ========================================================================== */
.buckeye-team-ribbon {
    background-color: #F4F5F7 !important;
    padding: 15px 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 45px !important;
    border-bottom: 2px solid #E2E8F0 !important;
    position: relative;
    z-index: 1;
}

    .buckeye-team-ribbon a img {
        height: 55px;
        width: auto !important;
        display: block !important;
        filter: drop-shadow(0 3px 5px rgba(0,0,0,0.15)) !important;
        transition: transform 0.2s ease-in-out !important;
    }

    .buckeye-team-ribbon a:hover img {
        transform: scale(1.15) translateY(-2px) !important;
        filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3)) !important;
        cursor: pointer;
    }

/* Individual visual-size adjustments for uneven logo artwork */
.ribbon-reds {
    height: 72px !important;
}

.ribbon-bengals {
    height: 72px !important;
}

.ribbon-fcc {
    height: 55px !important;
}

.ribbon-bearcats {
    height: 65px !important;
}

.ribbon-osu {
    height: 60px !important;
}

.ribbon-bluejackets {
    height: 60px !important;
}

.ribbon-crew {
    height: 55px !important;
}

.ribbon-browns {
    height: 58px !important;
}

.ribbon-cavaliers {
    height: 55px !important;
}

.ribbon-guardians {
    height: 55px !important;
}


/* ==========================================================================
   06. ADMIN CREATE PAGE
   ========================================================================== */
.admin-form * {
    font-family: 'Segoe UI Variable', Arial, sans-serif;
    box-sizing: border-box;
}

.admin-section-title {
    font-family: 'LocalAlfaSlab', serif;
    font-size: 1.4rem;
    color: #1E2229;
    text-transform: uppercase;
    margin-top: 35px;
    margin-bottom: 20px;
    border-bottom: 3px solid #1E2229;
    padding-bottom: 8px;
}

.admin-form-group {
    margin-bottom: 22px;
}

.admin-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1E2229;
    margin-bottom: 6px;
}

.admin-input,
.admin-select,
.admin-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-size: 0.95rem;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease;
}

    .admin-input:focus,
    .admin-select:focus,
    .admin-textarea:focus {
        border-color: #1E2229;
        outline: none;
    }

.admin-btn {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.admin-btn-primary {
    background-color: #1E2229;
    color: #FFFFFF;
}

    .admin-btn-primary:hover {
        background-color: #2E3440;
    }

.admin-btn-info {
    background-color: #3B82F6;
    color: #FFFFFF;
}

    .admin-btn-info:hover {
        background-color: #2563EB;
    }

.admin-btn-success {
    background-color: #16A34A;
    color: #FFFFFF;
}

    .admin-btn-success:hover {
        background-color: #15803D;
    }

.admin-hr {
    margin: 35px 0;
    border: none;
    border-bottom: 1px solid #E2E8F0;
}

.admin-status {
    margin-top: 10px;
    font-size: 0.9rem;
}

.admin-file {
    padding: 6px;
}

.tox .tox-edit-area__iframe {
    font-family: 'Segoe UI', Arial, sans-serif !important;
}


/* ==========================================================================
   06B. ARTICLE BODY MEDIA
   ========================================================================== */
.article-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1A202C;
}

    .article-body::after {
        content: "";
        display: block;
        clear: both;
    }

    .article-body p {
        margin: 0 0 1rem;
    }

    .article-body img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }

    .article-body figure {
        margin: 1.4rem 0;
    }

    .article-body figcaption {
        margin-top: 6px;
        color: #718096;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .article-body .article-image-left,
    .article-body img.article-image-left {
        float: left;
        width: min(42%, 320px);
        margin: 0.25rem 1.25rem 1rem 0;
    }

    .article-body .article-image-right,
    .article-body img.article-image-right {
        float: right;
        width: min(42%, 320px);
        margin: 0.25rem 0 1rem 1.25rem;
    }

    .article-body .article-image-center,
    .article-body img.article-image-center {
        display: block;
        width: min(100%, 680px);
        margin: 1.5rem auto;
    }

    .article-body .article-image-full,
    .article-body img.article-image-full {
        display: block;
        width: 100%;
        margin: 1.5rem 0;
    }

    .article-body .osh-media-embed {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        margin: 1.6rem 0;
        background: #0F172A;
        border-radius: 6px;
        overflow: hidden;
    }

        .article-body .osh-media-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

    .article-body .osh-media-block {
        margin: 1.6rem 0;
    }

        .article-body .osh-media-block video,
        .article-body .osh-media-block audio {
            width: 100%;
            display: block;
        }

        .article-body .osh-media-block video {
            max-height: 520px;
            background: #0F172A;
            border-radius: 6px;
        }

    .article-body .osh-social-embed {
        margin: 1.6rem auto;
        max-width: 560px;
    }

        .article-body .osh-social-embed blockquote {
            margin: 0;
        }

.staff-inline-article-view {
    background: #FFFFFF;
}

.staff-inline-article {
    padding-top: 0;
}

.article-share-ribbon {
    display: flex;
    width: 100%;
    min-height: 42px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 18px;
    padding: 9px 12px 9px 14px;
    border-radius: 2px;
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.article-share-ribbon-label {
    min-width: 0;
    overflow-wrap: anywhere;
}

.article-share-button {
    display: inline-flex;
    min-width: 72px;
    min-height: 32px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid currentColor;
    border-radius: 3px;
    color: inherit;
    background: rgba(255, 255, 255, .14);
    font: inherit;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
}

.article-share-button:hover,
.article-share-button:focus-visible {
    color: inherit;
    background: rgba(255, 255, 255, .26);
}

.article-share-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.article-share-button:disabled {
    cursor: wait;
    opacity: .78;
}

.article-share-button.is-copied {
    background: rgba(255, 255, 255, .32);
}

@media (max-width: 520px) {
    .article-share-ribbon {
        gap: 10px;
        padding: 9px 10px 9px 12px;
        font-size: .72rem;
    }

    .article-share-button {
        min-width: 64px;
        padding-inline: 9px;
    }
}

.staff-inline-article-title {
    margin: 0 0 10px;
    color: #1E2229;
    font-size: 1.9rem;
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: 0;
    text-transform: uppercase;
}

.staff-inline-article-subtitle {
    margin-bottom: 16px;
    color: #4A5568;
    font-size: 1.05rem;
    line-height: 1.45;
}

.staff-inline-article-meta {
    margin-bottom: 22px;
    color: #718096;
    font-size: .86rem;
    line-height: 1.55;
}

.staff-inline-article-figure {
    margin: 0 0 24px;
}

    .staff-inline-article-figure img {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }

    .staff-inline-article-figure figcaption {
        margin-top: 6px;
        color: #718096;
        font-size: .8rem;
        line-height: 1.45;
    }

.staff-inline-article-body {
    margin-top: 8px;
}

.game-coverage-card {
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 4px;
    background: #1E2229;
    color: #FFFFFF;
}

.game-coverage-label {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 8px;
    background: #D4A373;
    color: #111827;
    font-size: 0.7rem;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.game-coverage-scoreboard {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.game-coverage-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(212, 163, 115, .35);
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
}

.game-coverage-team.is-winner {
    border-color: #D4A373;
    background: rgba(212, 163, 115, .16);
}

.game-coverage-team-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.game-coverage-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 34px;
}

.game-coverage-team-name {
    font-size: .95rem;
    font-weight: 850;
    line-height: 1.15;
}

.game-coverage-team-homeaway {
    margin-top: 2px;
    color: #CBD5E1;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.game-coverage-score {
    min-width: 44px;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    text-align: right;
}

.game-coverage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 12px;
    color: #CBD5E1;
    font-size: .78rem;
    line-height: 1.4;
}

.game-coverage-linescore-wrap {
    margin-top: 16px;
    overflow-x: auto;
}

.game-coverage-linescore {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
    color: #FFFFFF;
    font-size: .78rem;
}

.game-coverage-linescore th,
.game-coverage-linescore td {
    padding: 7px 8px;
    border-bottom: 1px solid rgba(226, 232, 240, .18);
    text-align: center;
    white-space: nowrap;
}

.game-coverage-linescore th:first-child,
.game-coverage-linescore td:first-child {
    text-align: left;
}

.game-coverage-linescore th {
    color: #D4A373;
    font-weight: 850;
    text-transform: uppercase;
}

.game-coverage-linescore-total {
    color: #D4A373;
    font-weight: 900;
}

.game-coverage-decisions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(226, 232, 240, .18);
    color: #E2E8F0;
    font-size: .78rem;
}

.game-coverage-decision {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
    min-width: 0;
}

.game-coverage-decision--center {
    justify-content: center;
    text-align: center;
}

.game-coverage-decision--right {
    justify-content: flex-end;
    text-align: right;
}

.game-coverage-decisions span {
    color: #D4A373;
    font-weight: 900;
}

.game-coverage-decisions strong {
    color: #FFFFFF;
}

.game-coverage-decisions em {
    color: #CBD5E1;
    font-style: normal;
}

.game-coverage-player-box {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(226, 232, 240, .18);
}

.game-coverage-player-box summary {
    cursor: pointer;
    color: #D4A373;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.game-coverage-player-box-grid {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

.game-coverage-player-team h4 {
    margin: 0 0 8px;
    color: #FFFFFF;
    font-size: .82rem;
    font-weight: 900;
}

.game-coverage-player-table-wrap {
    overflow-x: auto;
}

.game-coverage-player-table {
    width: 100%;
    min-width: 430px;
    border-collapse: collapse;
    color: #FFFFFF;
    font-size: .74rem;
}

.game-coverage-player-table th,
.game-coverage-player-table td {
    padding: 6px 7px;
    border-bottom: 1px solid rgba(226, 232, 240, .14);
    text-align: center;
    white-space: nowrap;
}

.game-coverage-player-table th:first-child,
.game-coverage-player-table td:first-child {
    text-align: left;
}

.game-coverage-player-table th {
    color: #D4A373;
    font-weight: 850;
}

.game-coverage-player-table td:first-child span {
    font-weight: 800;
}

.game-coverage-player-table td:first-child em {
    margin-left: 5px;
    color: #CBD5E1;
    font-size: .68rem;
    font-style: normal;
}

.staff-inline-article-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 2px solid #E2E8F0;
}

.staff-inline-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    min-width: 190px;
    padding: 9px 14px;
    border-radius: 4px;
    font-family: 'Satoshi', system-ui, sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
    text-decoration: none;
}

.staff-inline-back-button {
    border: 1px solid #C29060;
    background: #D4A373;
    color: #1E2229;
    cursor: pointer;
}

    .staff-inline-back-button:hover,
    .staff-inline-back-button:focus-visible {
        background: #C29060;
        outline: none;
    }

.weekly-digest-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #1A202C;
}

    .weekly-digest-body::after {
        content: "";
        display: block;
        clear: both;
    }

    .weekly-digest-body img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }

    .weekly-digest-body .article-image-left,
    .weekly-digest-body img.article-image-left {
        float: left;
        width: min(42%, 320px);
        margin: 0.25rem 1.25rem 1rem 0;
    }

    .weekly-digest-body .article-image-right,
    .weekly-digest-body img.article-image-right {
        float: right;
        width: min(42%, 320px);
        margin: 0.25rem 0 1rem 1.25rem;
    }

    .weekly-digest-body .article-image-center,
    .weekly-digest-body img.article-image-center {
        display: block;
        width: min(100%, 680px);
        margin: 1.5rem auto;
    }

    .weekly-digest-body .article-image-full,
    .weekly-digest-body img.article-image-full {
        display: block;
        width: 100%;
        margin: 1.5rem 0;
    }

    .weekly-digest-body .osh-media-embed {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        margin: 1.6rem 0;
        background: #0F172A;
        border-radius: 6px;
        overflow: hidden;
    }

        .weekly-digest-body .osh-media-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

    .weekly-digest-body .osh-media-block {
        margin: 1.6rem 0;
    }

        .weekly-digest-body .osh-media-block video,
        .weekly-digest-body .osh-media-block audio {
            width: 100%;
            display: block;
        }

        .weekly-digest-body .osh-media-block video {
            max-height: 520px;
            background: #0F172A;
            border-radius: 6px;
        }

    .weekly-digest-body .osh-social-embed {
        margin: 1.6rem auto;
        max-width: 560px;
    }

        .weekly-digest-body .osh-social-embed blockquote {
            margin: 0;
        }


/* ==========================================================================
   07. TEAM PAGE SHARED STYLES
   ========================================================================== */
.team-header {
    width: 100%;
    height: 125px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-title {
    font-size: 36px;
    font-weight: 725;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.team-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.team-switch-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #1E2229;
    color: #FFFFFF;
    border: 2px solid #D4A373;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .02em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .18);
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

    .team-switch-link:hover {
        color: #FFFFFF;
        background: #2B3038;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .24);
    }

.team-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team-header-action-link {
    background: #FFFFFF;
    color: #1E2229;
    border-color: #1E2229;
}

    .team-header-action-link:hover {
        background: #F4F5F7;
        color: #1E2229;
    }

.schedule-season-header {
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
    padding: 7px 10px;
    background: #1E2229;
    color: #FFFFFF;
    border-top: 2px solid #D4A373;
    border-bottom: 2px solid #D4A373;
    font-size: 0.75rem;
    font-weight: 850;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.schedule-season-header--postseason {
    background: #D4A373;
    color: #FFFFFF;
    border-top-color: #000000;
    border-bottom-color: #000000;
}

/* Staff article type filter used on the home page and team article columns. */
.staff-article-filter {
    margin: 0 0 20px;
}

.staff-article-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    overflow: hidden;
    background: #1E2229;
    border-top: 2px solid #D4A373;
    border-bottom: 2px solid #D4A373;
    border-radius: 4px;
}

.staff-article-filter-tab {
    appearance: none;
    border: 0;
    border-right: 1px solid rgba(212, 163, 115, .45);
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    flex: 1 1 140px;
    min-height: 38px;
    padding: 9px 12px;
    font-family: 'Satoshi', system-ui, sans-serif;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    transition: background-color .15s ease, color .15s ease;
}

    .staff-article-filter-tab:last-child {
        border-right: 0;
    }

    .staff-article-filter-tab:hover,
    .staff-article-filter-tab:focus-visible {
        background: #2B3038;
        color: #D4A373;
        outline: none;
    }

    .staff-article-filter-tab.is-active {
        background: #D4A373;
        color: #1E2229;
    }

.staff-article-filter-empty {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px dashed #CBD5E1;
    color: #64748B;
    font-size: .85rem;
    font-style: italic;
    text-align: center;
}

.team-info-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: #F4F5F7;
    border-bottom: 1px solid #E2E8F0;
}

.team-info-item {
    flex: 1 1 130px;
    min-width: 120px;
    text-align: center;
}

    .team-info-item span {
        display: block;
        font-size: 0.68rem;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: .04em;
        font-weight: 700;
    }

    .team-info-item strong {
        display: block;
        margin-top: 2px;
        font-size: 0.82rem;
        color: #1E293B;
        font-weight: 700;
    }

    .team-info-item a {
        color: #1E293B;
        text-decoration: underline;
    }

        .team-info-item a:hover {
            color: #000000;
        }

.team-logo-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo {
    max-width: 90px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.team-logo-mls {
    max-width: auto;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.team-logo-mlb {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.schedule-opponent-logo {
    width: auto;
    height: auto;
    max-width: 32px;
    max-height: 22px;
    object-fit: contain;
    flex: 0 0 auto;
    display: inline-block;
}


/* ==========================================================================
   08. CONTACT PAGE
   ========================================================================== */
.contact-page {
    background: #FFFFFF;
    min-height: 100vh;
    font-family: 'Satoshi', system-ui, sans-serif;
    color: #1E2229;
}

.contact-ribbon {
    background-color: #F4F5F7;
    padding: 15px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E2E8F0;
    overflow-x: auto;
}

    .contact-ribbon span {
        font-size: 0.85rem;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        white-space: nowrap;
    }

.contact-container {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: calc(100vh - 56px);
}

.contact-info-panel {
    padding: 42px 42px 50px;
    border-right: 1px solid #E2E8F0;
    background-color: #FAFAFA;
}

.contact-form-panel {
    padding: 42px 42px 50px;
    background: #FFFFFF;
}

.contact-eyebrow {
    font-size: 0.78rem;
    color: #E53E3E;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-panel h1 {
    font-size: 2.5rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 18px;
    color: #1E2229;
}

.contact-intro {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 12px;
    max-width: 760px;
}

.contact-description {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #475569;
    margin-top: 18px;
    margin-bottom: 30px;
    max-width: 760px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-method {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
}

    .contact-method:hover {
        border-color: #CBD5E1;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    }

    .contact-method h3 {
        margin: 0 0 10px;
        font-size: 1rem;
        color: #1E2229;
        font-weight: 700;
    }

    .contact-method p {
        margin: 0 0 12px;
        color: #64748B;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .contact-method a {
        color: #E53E3E;
        text-decoration: none;
        font-weight: 600;
        word-break: break-word;
    }

        .contact-method a:hover {
            text-decoration: underline;
        }

.secure-tip-box {
    margin-top: 6px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #E53E3E;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

    .secure-tip-box h3 {
        margin: 0 0 10px;
        font-size: 1rem;
        font-weight: 700;
        color: #1E2229;
    }

    .secure-tip-box p {
        margin: 0 0 10px;
        color: #64748B;
        line-height: 1.65;
        font-size: 0.92rem;
    }

.social-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.social-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px 18px;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .social-card:hover {
        border-color: #CBD5E1;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
        transform: translateY(-1px);
    }

.social-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748B;
    font-weight: 700;
    margin-bottom: 6px;
}

.social-handle {
    display: block;
    color: #1E2229;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form-card {
    max-width: 640px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

    .contact-form-card h2 {
        margin: 0 0 10px;
        font-size: 1.5rem;
        color: #1E2229;
        font-weight: 700;
    }

    .contact-form-card > p {
        margin: 0 0 22px;
        color: #64748B;
        line-height: 1.7;
    }

.form-alert {
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 0.92rem;
    line-height: 1.6;
    border: 1px solid transparent;
}

.form-alert-success {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #166534;
}

.form-alert-error {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #991B1B;
}

.validation-summary {
    margin-bottom: 16px;
    color: #B91C1C;
    font-size: 0.95rem;
    line-height: 1.6;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    padding: 12px 14px;
    border-radius: 8px;
}

    .validation-summary ul {
        margin: 0;
        padding-left: 18px;
    }

        .validation-summary:empty,
        .validation-summary.validation-summary-valid,
        .validation-summary ul:empty {
            display: none;
        }

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group label {
        font-size: 0.8rem;
        font-weight: 700;
        color: #334155;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 16px;
        border: 1px solid #CBD5E1;
        border-radius: 8px;
        background: #FFFFFF;
        color: #1E2229;
        font-size: 0.96rem;
        transition: all 0.2s ease;
        outline: none;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #94A3B8;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #E53E3E;
            box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.08);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 170px;
    }

.field-validation-error {
    margin-top: 8px;
    color: #B91C1C;
    font-size: 0.85rem;
    line-height: 1.5;
    display: block;
    font-weight: 600;
}

.input-validation-error {
    border-color: #DC2626 !important;
    background-color: #FEF2F2;
}

.contact-submit-btn {
    grid-column: 1 / -1;
    border: none;
    background: #1E2229;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .contact-submit-btn:hover {
        background: #11151B;
        transform: translateY(-1px);
    }

    .contact-submit-btn:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(30, 34, 41, 0.12);
    }

.contact-meta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

    .contact-meta p {
        margin: 0 0 10px;
        color: #64748B;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-meta span {
        color: #E53E3E;
        font-weight: 700;
    }

.honeypot-wrap {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.honeypot-input {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

    .honeypot-input.input-validation-error {
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
    }


/* ==========================================================================
   09. SUPPORT PAGE
   ========================================================================== */
.support-page {
    background: #FFFFFF;
    min-height: 100vh;
    font-family: 'Satoshi', system-ui, sans-serif;
    color: #1E2229;
}

.support-ribbon {
    background-color: #F4F5F7;
    padding: 15px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E2E8F0;
}

    .support-ribbon span {
        font-size: 0.85rem;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

.support-container {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 0;
    min-height: 60vh;
}

.support-main {
    padding: 44px;
    background: #FAFAFA;
    border-right: 1px solid #E2E8F0;
}

.support-panel {
    padding: 44px;
    background: #FFFFFF;
}

.support-eyebrow {
    font-size: 0.78rem;
    color: #E53E3E;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.support-main h1 {
    font-size: 2.45rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 18px;
    color: #1E2229;
    max-width: 820px;
}

.support-intro {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 12px;
    max-width: 760px;
}

.support-statement {
    color: #1E2229;
    font-size: 1.04rem;
}

.strike-word {
    text-decoration: line-through;
    opacity: 0.75;
    margin-right: 4px;
}

.support-description {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #475569;
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 760px;
}

.support-everyone {
    margin-top: 18px;
}

.support-impact {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 24px;
    max-width: 760px;
    margin-top: 28px;
}

    .support-impact h2 {
        margin: 0 0 14px;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .support-impact ul {
        margin: 0;
        padding-left: 20px;
        color: #475569;
        line-height: 1.9;
    }

.support-card {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FFFFFF;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    max-width: 560px;
}

    .support-card h2 {
        margin: 0 0 10px;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .support-card > p {
        margin: 0 0 24px;
        color: #64748B;
        line-height: 1.7;
    }

.support-tiers {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.support-tier {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: start;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
    background: #FAFAFA;
}

.tier-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: #E53E3E;
    line-height: 1;
}

.tier-copy {
    color: #475569;
    line-height: 1.6;
    font-size: 0.93rem;
}

.support-welcome-note {
    color: #64748B;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.support-options {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.support-option {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 18px;
    background: #FFFFFF;
}

    .support-option h3 {
        margin: 0 0 8px;
        font-size: 1rem;
        font-weight: 700;
        color: #1E2229;
    }

    .support-option p {
        margin: 0;
        color: #64748B;
        line-height: 1.6;
        font-size: 0.92rem;
    }

.support-cta {
    margin: 26px 0 20px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    background: #1E2229;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.97rem;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
}

    .support-btn:hover {
        background: #11151B;
        transform: translateY(-1px);
    }

.support-note {
    border-top: 1px solid #E2E8F0;
    padding-top: 18px;
}

    .support-note p {
        margin: 0 0 10px;
        color: #64748B;
        font-size: 0.9rem;
        line-height: 1.65;
    }

.support-faq-wrap {
    padding: 0 44px 50px;
    background: #FFFFFF;
}

.support-faq {
    border-top: 1px solid #E2E8F0;
    padding-top: 36px;
}

    .support-faq h2 {
        margin: 0 0 20px;
        font-size: 1.55rem;
        font-weight: 700;
    }

.faq-item {
    border-bottom: 1px solid #E2E8F0;
    padding: 18px 0;
    max-width: 880px;
}

    .faq-item h3 {
        margin: 0 0 8px;
        font-size: 1rem;
        font-weight: 700;
        color: #1E2229;
    }

    .faq-item p {
        margin: 0;
        color: #64748B;
        line-height: 1.75;
    }


/* ==========================================================================
   10. EDITORIAL / POLICY LINKS
   ========================================================================== */
.inline-link,
.inline-link:visited {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

    .inline-link:hover {
        text-decoration-thickness: 2px;
    }

    .inline-link:active {
        color: #000;
    }

.editorial-link {
    color: #000;
    text-decoration: underline;
}

.policy-index {
    margin-top: 1rem;
}

    .policy-index ul {
        margin-top: 1rem;
        padding-left: 1.5rem;
    }

    .policy-index li {
        margin-bottom: .5rem;
    }

.policy-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ==========================================================================
   11. FOOTER
   ========================================================================== */
footer {
    background-color: #2f343a;
    border-top: none;
    padding: 20px 0;
    margin-top: 50px;
}

    footer .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

.footer-left {
    color: #d4d4d4;
}

.footer-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .footer-right a {
        color: #ffffff;
        text-decoration: none;
        font-size: .9rem;
        font-weight: 500;
        transition: opacity .2s ease;
    }

        .footer-right a:hover {
            color: #ffffff;
            text-decoration: underline;
        }


/* ==========================================================================
   12. SHARED EDITORIAL LAYOUT
   ========================================================================== */
.osh-content-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
    color: #1E2229;
    background-color: #FFFFFF;
    font-family: "Satoshi", system-ui, sans-serif;
}

.osh-content-column {
    box-sizing: border-box;
    min-width: 0;
}

.osh-around-web-column {
    width: 25%;
    padding: 25px;
    border-right: 1px solid #E2E8F0;
    background-color: #FAFAFA;
}

.osh-staff-column {
    width: 50%;
    padding: 25px;
}

.osh-schedule-column {
    width: 25%;
    padding: 25px;
    border-left: 1px solid #E2E8F0;
    background-color: #FAFAFA;
}


/* ==========================================================================
   13. RESPONSIVE RULES
   ========================================================================== */
@media (max-width: 1100px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .contact-methods,
    .social-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .support-container {
        grid-template-columns: 1fr;
    }

    .support-main {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }
}

@media (max-width: 768px) {
    .buckeye-navbar {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 14px 16px !important;
    }

    .buckeye-brand-container {
        justify-content: center;
    }

    .buckeye-brand-container .buckeye-nav-logo {
        height: 76px !important;
        margin-right: 14px !important;
    }

    .buckeye-navbar .brand-text {
        display: flex;
        flex-direction: column;
        margin: 0 !important;
        font-size: 1.8rem !important;
        line-height: 1.02;
        text-align: left;
    }

    .brand-word {
        display: block;
    }

    .buckeye-primary-links {
        width: 100%;
        align-items: stretch !important;
        flex-direction: column;
        margin-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, .18);
    }

    .buckeye-navbar .buckeye-primary-links .buckeye-nav-item {
        width: 100%;
        min-height: 44px;
        margin: 0;
        padding: 11px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        font-size: 1rem;
        line-height: 1.25;
        text-align: center;
    }

    .buckeye-team-ribbon {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        max-width: 100%;
        justify-content: stretch !important;
        gap: 12px 6px !important;
        padding: 10px 14px !important;
        overflow: visible;
    }

    .buckeye-team-ribbon a {
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: center;
    }

    .buckeye-team-ribbon a img {
        width: 52px !important;
        max-width: 100%;
        height: 44px !important;
        object-fit: contain;
    }

    .osh-site-tagline {
        display: none !important;
    }

    .osh-home-announcements {
        padding: 16px 16px 0 !important;
    }

    .osh-content-layout {
        min-height: 0;
        flex-direction: column;
    }

    .osh-content-column {
        width: 100%;
        overflow-wrap: anywhere;
    }

    .osh-staff-column {
        order: 1;
        padding: 22px 16px;
    }

    .osh-around-web-column {
        order: 2;
        padding: 22px 16px;
        border-top: 1px solid #E2E8F0;
        border-right: 0;
    }

    .osh-schedule-column {
        order: 3;
        padding: 22px 16px;
        border-top: 1px solid #E2E8F0;
        border-left: 0;
    }

    .osh-home-staff-column .staff-article-filter-list > .staff-article-filter-item:nth-child(n + 5),
    .osh-team-staff-column .staff-article-filter-list > .staff-article-filter-item:nth-child(n + 5),
    .osh-around-web-list > .osh-around-web-item:nth-child(n + 6),
    .osh-home-schedule-game.is-mobile-hidden {
        display: none !important;
    }

    .osh-home-schedule-team:nth-of-type(n + 3) {
        display: none;
    }

    .team-header {
        height: auto;
        min-height: 125px;
        padding: 14px 10px;
    }

    .team-header-content {
        gap: 12px;
    }

    .team-title {
        flex: 1 1 100%;
        font-size: 1.85rem;
        line-height: 1.1;
        text-align: center;
    }

    .team-switch-link {
        padding: 7px 12px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 28px 18px 34px;
    }

        .contact-info-panel h1 {
            font-size: 2rem;
        }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 22px;
    }

    .contact-ribbon {
        padding: 14px 18px;
    }

    .support-main,
    .support-panel,
    .support-faq-wrap {
        padding: 28px 18px 34px;
    }

        .support-main h1 {
            font-size: 2rem;
        }

    .support-card {
        padding: 22px;
    }

    .support-tier {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .support-ribbon {
        padding: 14px 18px;
    }

    .article-body .article-image-left,
    .article-body img.article-image-left,
    .article-body .article-image-right,
    .article-body img.article-image-right,
    .weekly-digest-body .article-image-left,
    .weekly-digest-body img.article-image-left,
    .weekly-digest-body .article-image-right,
    .weekly-digest-body img.article-image-right {
        float: none;
        display: block;
        width: 100%;
        margin: 1.25rem 0;
    }

    footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }
}

/* =============================================================================
   OHIO SPORTS HUB - ANNOUNCEMENTS
============================================================================= */

.osh-announcement-list {
    display: grid;
    gap: 12px;
    width: 100%;
}

.osh-announcement-card {
    overflow: hidden;
    border: 1px solid #2E3640;
    border-bottom: 4px solid #D4A373;
    border-radius: 3px;
    color: #FFFFFF;
    background: #1E2229;
}

.osh-announcement-summary {
    display: flex;
    min-height: 76px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 20px;
    cursor: pointer;
    list-style: none;
}

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

.osh-announcement-summary:hover {
    background: #252B33;
}

.osh-announcement-summary:focus-visible {
    outline: 3px solid #D4A373;
    outline-offset: -3px;
}

.osh-announcement-heading {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.osh-announcement-eyebrow {
    color: #CBD5E1;
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.osh-announcement-title {
    color: #D4A373;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.osh-announcement-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.osh-announcement-close-label {
    display: none;
}

.osh-announcement-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #D4A373;
    border-bottom: 2px solid #D4A373;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .18s ease;
}

.osh-announcement-card[open] .osh-announcement-open-label {
    display: none;
}

.osh-announcement-card[open] .osh-announcement-close-label {
    display: inline;
}

.osh-announcement-card[open] .osh-announcement-icon {
    transform: translateY(3px) rotate(225deg);
}

.osh-announcement-content {
    max-width: 900px;
    padding: 18px 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #E2E8F0;
    font-family: 'Satoshi', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.osh-announcement-content p {
    margin: 0 0 12px;
}

.osh-announcement-content p:last-child {
    margin-bottom: 0;
}

.osh-announcement-content a {
    color: #FFFFFF;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.osh-announcement-content a:hover,
.osh-announcement-content a:focus-visible {
    color: #F0C69E;
}

@media (max-width: 700px) {
    .osh-announcement-summary {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .osh-announcement-toggle {
        font-size: .8rem;
    }

    .osh-announcement-content {
        padding: 16px;
    }
}
/* Related coverage blocks strengthen public article/game internal linking. */
.related-coverage {
    margin-top: 30px;
    padding: 22px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #FFFFFF;
}

.related-coverage-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.related-coverage-label {
    color: #64748B;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.related-coverage h2 {
    margin: 4px 0 0;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 800;
}

.related-coverage p {
    max-width: 360px;
    margin: 0;
    color: #64748B;
    font-size: 0.9rem;
}

.related-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.related-coverage-card {
    display: flex;
    min-height: 118px;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 14px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    color: #111827;
    text-decoration: none;
    background: #F8FAFC;
}

.related-coverage-card:hover,
.related-coverage-card:focus {
    border-color: #CBD5E1;
    color: #111827;
    text-decoration: none;
    background: #F1F5F9;
}

.related-coverage-card span {
    color: #B91C1C;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.related-coverage-card strong {
    font-size: 0.98rem;
    line-height: 1.3;
}

.related-coverage-card small {
    color: #64748B;
    font-size: 0.8rem;
    line-height: 1.35;
}

@media (max-width: 700px) {
    .related-coverage-header {
        display: block;
    }

    .related-coverage p {
        max-width: none;
        margin-top: 8px;
    }
}
.staff-game-article-package {
    scroll-margin-top: 24px;
}
