

.aux-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.aux-header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-3) var(--space-4);
}

.aux-header .logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.aux-header .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
}

.aux-header .brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-fg);
}

.aux-content {
  flex: 1;
  max-width: 900px;
  margin-inline: auto;
  width: 100%;
  padding: var(--space-6) var(--space-4);
}

@media (max-width: 640px) {
  .aux-content {
    padding: var(--space-5) var(--space-3);
  }
}

.aux-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-4);
  color: var(--c-fg);
}

.aux-section {
  margin-bottom: var(--space-6);
}

.aux-section h2 {
  font-size: 1.5rem;
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  color: var(--c-fg);
}

.aux-section h3 {
  font-size: 1.1rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  color: var(--c-fg);
}

.aux-section p {
  margin-bottom: var(--space-2);
  color: var(--c-muted);
  line-height: 1.7;
}

.aux-section ul,
.aux-section ol {
  margin-left: var(--space-4);
  margin-bottom: var(--space-3);
  color: var(--c-muted);
}

.aux-section li {
  margin-bottom: var(--space-1);
  line-height: 1.6;
}

.aux-section a {
  color: var(--c-accent);
  text-decoration: underline;
}

.aux-section a:hover {
  color: var(--c-accent-light);
}

.aux-footer {
  background: #f0f4f8;
  border-top: 1px solid var(--c-border);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  margin-top: var(--space-6);
}

.footer-content {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-4);
  text-align: left;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
  color: var(--c-fg);
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: var(--c-muted);
  display: block;
  margin-bottom: var(--space-1);
}

.footer-section a {
  color: var(--c-accent);
}

.footer-section a:hover {
  color: var(--c-accent-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--c-border);
  color: var(--c-muted);
  font-size: 0.85rem;
}
