.live-results {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.live-results__heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.live-results__heading h2,
.live-results__group h3 {
  color: #191d31;
  font-weight: 800;
}

.live-results__eyebrow {
  margin-bottom: .35rem;
  color: #e8910d;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.live-results__group {
  margin-bottom: 2.25rem;
}

.live-results__group h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.live-results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.live-result-card {
  display: grid;
  gap: .75rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(232, 145, 13, .25);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 29, 49, .08);
}

.live-result-card__top,
.live-result-card__timings,
.live-result-card__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.live-result-card__name {
  margin: 0;
  color: #e8910d;
  font-size: 1.15rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.live-result-card__status {
  flex-shrink: 0;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: #e9f8ee;
  color: #16753a;
  font-size: .72rem;
  font-weight: 700;
}

.live-result-card__status[data-closed="true"] {
  background: #fff0f0;
  color: #b42318;
}

.live-result-card__number {
  color: #191d31;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.live-result-card__timings {
  align-items: flex-start;
  padding-top: .7rem;
  border-top: 1px solid #eceef3;
  color: #60657a;
  font-size: .82rem;
}

.live-result-card__timings span:last-child {
  text-align: right;
}

.live-result-card__links {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.live-result-card__links a {
  padding: .45rem .75rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8910d, #ff6b35);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.live-results__status,
.live-chart-message {
  padding: 1rem;
  border: 1px solid rgba(232, 145, 13, .25);
  border-radius: 10px;
  background: #fffaf2;
  color: #5b4a2f;
  text-align: center;
}

.live-results__status[hidden] {
  display: none;
}

.live-chart-source {
  margin: 0 auto 1rem;
  color: #60657a;
  font-size: .85rem;
  text-align: center;
}

@media (max-width: 992px) {
  .live-results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .live-results {
    padding-top: 2.5rem;
  }

  .live-results__grid {
    grid-template-columns: 1fr;
  }

  .live-result-card__number {
    font-size: 1.4rem;
  }
}
