.standing {
  display: grid;
  grid-template-columns: 30px 1fr 32px 42px 32px;
  gap: 8px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  align-items: center;
}

.standing.heading {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .12em;
}

.standing > *:not(:nth-child(2)) {
  text-align: center;
}

.today-dispatch {
  display: grid;
  grid-template-columns: 46px 1fr 42px;
  gap: 13px;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px;
  color: var(--ink);
  background: var(--acid);
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.dispatch-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  font: 16px "Archivo Black";
  border-radius: 50%;
}

.today-dispatch strong,
.today-dispatch small {
  display: block;
}

.today-dispatch strong {
  margin: 3px 0 1px;
  font-size: 14px;
}

.today-dispatch small {
  font-size: 10px;
  opacity: .65;
}

.today-dispatch button {
  width: 42px;
  height: 42px;
  color: white;
  background: var(--red);
  border: 0;
  font-size: 20px;
  cursor: pointer;
  transition: transform .15s ease;
}

.today-dispatch button:hover {
  transform: translateX(3px);
}

.auto-note {
  display: block;
  max-width: 330px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.fixture-action {
  grid-template-columns: 75px 1fr auto;
}

.fixture-action .date time {
  display: inline-block;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 700;
}

.announce-btn {
  min-width: 82px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  font: 700 10px "DM Sans";
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
}

.announce-btn:hover {
  color: white;
  background: var(--red);
}

.announce-btn:disabled {
  opacity: .65;
  cursor: wait;
}

@media (max-width: 560px) {
  .fixture-action {
    grid-template-columns: 62px 1fr;
  }

  .announce-btn {
    grid-column: 2;
    width: fit-content;
  }
}

.world-source {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 13px;
  background: var(--ink);
  color: white;
  border-left: 5px solid var(--acid);
}

.world-source strong,
.world-source small {
  display: block;
}

.world-source strong {
  margin: 4px 0 2px;
  font-size: 14px;
}

.world-source small {
  max-width: 210px;
  color: #aeb3aa;
  font-size: 10px;
}

.world-source button {
  padding: 9px 11px;
  color: var(--ink);
  background: var(--acid);
  border: 0;
  font: 700 10px "DM Sans";
  cursor: pointer;
}

.world-source button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
