.quick-stage {
  display: block;
  width: calc(100% - 24px);
  min-height: 44px;
  margin: 0 12px 12px;
  border: 1px solid #e95022;
  border-radius: 8px;
  background: #f05a2a;
  color: #fff;
  font: 600 13px Atkinson, sans-serif;
  cursor: pointer;
}

.quick-stage:hover {
  background: #d9471d;
}

.quick-stage:disabled {
  opacity: .55;
  cursor: wait;
}

.post-card[data-status="posted"] .quick-stage {
  background: #fffdf9;
  color: #51463d;
  border-color: #cfc4ba;
}

.metrics {
  grid-template-columns: repeat(3, 1fr);
}

.board {
  grid-template-columns: repeat(3, minmax(245px, 1fr));
}

@media (max-width: 1050px) {
  .metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .metrics div,
  .metrics div:nth-child(-n+2) {
    border-bottom: 0;
  }

  .metrics div:nth-child(2) {
    border-right: 1px solid #e7e0d9;
  }

  .board {
    grid-template-columns: repeat(3, 280px);
  }
}

@media (max-width: 720px) {
  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metrics div {
    display: grid;
    align-content: start;
    gap: 2px;
  }

  .metrics span {
    line-height: 1.15;
  }

  .board {
    grid-template-columns: repeat(3, 82vw);
  }
}
