.publishing-checklist-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fbfdff;
  margin: 0 0 22px;
}

.publishing-checklist-card.ready {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.publishing-checklist-card.not-ready {
  border-color: #fed7aa;
  background: #fff7ed;
}

.publishing-checklist-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.publishing-checklist-head h3 {
  margin: 0 0 4px;
}

.readiness-score {
  text-align: right;
  white-space: nowrap;
}

.readiness-score strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.readiness-score span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}

.readiness-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .08);
  overflow: hidden;
  margin: 16px 0;
}

.readiness-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.check-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.check-item.passed .check-icon {
  background: #dcfce7;
  color: #166534;
}

.check-item.failed .check-icon {
  background: #ffedd5;
  color: #c2410c;
}

.check-item strong {
  display: block;
  margin-bottom: 2px;
}

.check-item p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .publishing-checklist-head {
    display: block;
  }

  .readiness-score {
    text-align: left;
    margin-top: 12px;
  }
}
