/* ============================================================
   404.CSS
   Page-specific styles for 404.html
   ============================================================ */

.not-found {
  flex: 1;
}

.not-found__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(var(--gap) * 2);
}

@media (min-width: 768px) {
  .not-found__inner {
    flex-direction: row;
    align-items: center;
    gap: calc(var(--gap) * 3);
  }
}

.not-found__code {
  font-family: var(--font-heading);
  font-size: var(--text-fluid-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--teal-secondary);
  flex-shrink: 0;
  opacity: 0.35;
}

.not-found__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
