.grid.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .grid.grid-2 { grid-template-columns: 1fr; } }

.style-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 48px;
}
.style-label:first-child { margin-top: 0; }
.timetext {
    padding-left: 2px;
    font-size: 12px;
}
.card-s2 {
  background: #faf8f3;
  border-radius: 4px;
  overflow: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card-s2 h2 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #292929;
  padding: 16px 24px;
  
}

.table-s2 {
  width: 100%;
  border-collapse: collapse;
}

.table-s2 thead {
  border-bottom: 2px solid #adadad;
}

.table-s2 thead th {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 16px 10px 0;
  text-align: left;
}
.table-s2 thead th:first-child {
  padding-left: 24px;
  width: 56px;
}
.table-s2 thead th:last-child { text-align: right; padding-right: 24px; }

.table-s2 tbody tr {
  border-bottom: 1px solid #e8e3d8;
  transition: background 0.15s;
  cursor: pointer;
}
.table-s2 tbody tr:last-child { border-bottom: none; }
.table-s2 tbody tr:hover { background: #f0ede4; }

.table-s2 tbody td {
  padding: 14px 16px 14px 0;
  vertical-align: middle;
  font-family: 'DM Sans', sans-serif;
}
.table-s2 tbody td:last-child {
  text-align: right;
  padding-right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

/* Rank cell */
.table-s2 .rank-cell {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #ddd;
  width: 56px;
  padding-left: 24px !important;
  line-height: 1;
}
.table-s2 tbody tr:nth-child(1) .rank-cell { color: #1a1a1a; }
.table-s2 tbody tr:nth-child(2) .rank-cell { color: #888; }
.table-s2 tbody tr:nth-child(3) .rank-cell { color: #bbb; }

/* Brand link */
.table-s2 .topic-link {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
}
.table-s2 .topic-link:hover { text-decoration: underline; }

/* Category link */
.table-s2 .category-link {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
}
.table-s2 .category-link:hover { color: #333; }