.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.has-adjustment {
  border-color: oklch(72% .12 38);
  background: oklch(98% .018 55);
}

.post-card.has-adjustment-completed {
  border-color: #78b98a;
  background: #f4fbf6;
}

.adjustment-summary {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
  padding: 11px 12px;
  border: 1px solid oklch(86% .075 43);
  border-radius: 8px;
  background: oklch(94.5% .055 48);
  color: oklch(35% .09 33);
}

.adjustment-summary > span,
.drawer-adjustment > span {
  width: fit-content;
  padding: 3px 7px;
  border-radius: 999px;
  background: oklch(57% .19 34);
  color: oklch(98% .01 50);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.adjustment-summary > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.drawer-adjustment {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid oklch(84% .085 42);
  border-radius: 10px;
  background: oklch(94.5% .055 48);
  color: oklch(31% .075 34);
}

.adjustment-summary.is-completed,
.drawer-adjustment.is-completed {
  border-color: #a9d8b5;
  background: #e9f6ec;
  color: #195d2f;
}

.adjustment-summary.is-completed > span,
.drawer-adjustment.is-completed > span {
  background: #238343;
  color: #fff;
}

.drawer-adjustment > p {
  margin: 0;
  white-space: pre-wrap;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.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);
  }
}
