.other-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.other-heading .page-title {
  margin-bottom: var(--space-xs);
}

.other-heading p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.other-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: var(--space-md);
  min-width: 0;
  min-height: 230px;
  padding: var(--space-xl);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
}

.other-card-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--alert-info-bg);
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.other-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.other-card h2 {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.4;
}

.other-card p {
  margin: var(--space-sm) 0 var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

.other-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 8px 14px;
  text-align: center;
}

.other-card-action.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.other-client-field {
  display: grid;
  gap: var(--space-xs);
  margin: auto 0 var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.other-client-field select {
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  font: inherit;
}

.other-client-field select:focus-visible,
.other-card-action:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 2px;
}

.other-load-status {
  min-height: 1.5rem;
  margin-top: var(--space-lg);
  color: var(--status-error);
  font-size: 0.875rem;
}

@media (max-width: 1199px) {
  .other-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .other-grid {
    grid-template-columns: 1fr;
  }
}
