/* =========================================
   STANDINGS PAGE
========================================= */

.standings-hero {
    min-height: 240px;
    padding: 55px 20px;
}

.standings-intro,
.standings-cta {
    text-align: center;
    padding: 55px 5% 35px;
}

.standings-intro h2,
.standings-cta h2 {
    color: var(--gold);
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.standings-intro p,
.standings-cta p {
    color: var(--gold);
    font-size: 1.08rem;
    line-height: 1.8;
}

.standings-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 5%;
}

.premium-standings-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212,175,55,.18);
}

.premium-standings-table th {
    background: rgba(0,212,199,.18);
    color: var(--teal);
    padding: 18px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-standings-table td {
    color: var(--gold);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,.18);
    font-weight: 700;
}

.premium-standings-table tr:hover {
    background: rgba(212,175,55,.06);
}

.status-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--gold);
    font-size: .78rem;
    text-transform: uppercase;
}

.standings-cta {
    background: rgba(21,21,21,.45);
    padding-bottom: 80px;
}

@media(max-width:768px) {
    .standings-wrapper {
        overflow-x: auto;
    }

    .premium-standings-table {
        min-width: 760px;
    }
}