/* HTTP-Fehlerseiten – Code und Icon getrennt (kein Überlagern) */
.http-error-wrap {
  max-width: 520px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.http-error-card {
  text-align: center;
  padding: 2.5rem 1.75rem !important;
}

.http-error-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 1.35rem;
  min-height: auto;
}

.http-error-code {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  opacity: 0.22;
  user-select: none;
}

.http-error-symbol {
  font-size: 2.75rem;
  color: var(--primary);
  opacity: 0.9;
  line-height: 1;
}

.http-error-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.http-error-text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.http-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 480px) {
  .http-error-actions {
    flex-direction: column;
  }
  .http-error-actions .btn {
    width: 100%;
  }
}
