/* ===============================
   CHAMPIONSHIP STANDINGS TABLE
================================= */

.standings-wrapper {
    overflow-x: auto;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.standings-table thead {
    border-bottom: 2px solid #339967;
}

.standings-table th {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 12px 8px;
    text-align: right;
    color: #444;
}

.standings-table th:nth-child(2),
.standings-table th:nth-child(3) {
    text-align: left;
}

.standings-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.standings-table td.driver-name,
.standings-table td.team-name {
    text-align: left;
}

.standings-table td.driver-name a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
}

.standings-table td.driver-name a:hover {
    text-decoration: underline;
}

.standings-table td.pos {
    font-weight: 700;
    color: #339967;
}

.standings-table td.points {
    font-weight: 700;
}

.standings-table tbody tr:hover {
    background: #f9f9f9;
    transition: background 0.2s ease;
}

.article-subheading {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 28px 0 12px;
}