.about-dialog {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  background: var(--bg);
  color: var(--text);
  max-inline-size: 520px;
  width: calc(100% - 2 * var(--space-4));
  box-shadow: 0 20px 60px -20px oklch(0% 0 0 / 0.35);
  font-family: var(--font-body);
  inset: 0;
  margin: auto;
}

.about-dialog::backdrop {
  background: oklch(0% 0 0 / 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.about-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
}

.about-dialog__header h2 {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.2;
}

.about-dialog__close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .about-dialog__close:hover {
    color: var(--text-strong);
    background: var(--bg-soft);
  }
}

.about-dialog__body {
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  line-height: 1.55;
  font-size: var(--text-base);
  color: var(--text);
}

.about-dialog__body p {
  margin: 0;
}

.about-dialog__body em {
  font-style: italic;
  color: var(--text-strong);
}
