.analysis-error,
.match-error-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  color: var(--text);
  background: #160607;
  border: 1px solid #df727a4d;
  border-radius: 7px;
  margin: 14px 0;
  padding: 16px;
}

.analysis-error-code {
  color: #f18a92;
  background: #df727a14;
  border: 1px solid #df727a42;
  border-radius: 4px;
  padding: 5px 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.analysis-error h3,
.match-error-detail h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.analysis-error p,
.match-error-detail p {
  color: var(--muted);
  margin: 0 0 8px;
  font-size: 11px;
}

.analysis-error strong,
.match-error-detail strong {
  color: #f4b1b6;
  font-size: 10px;
}

.match-error-detail {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .analysis-error,
  .match-error-detail {
    grid-template-columns: 1fr;
  }
}
