@layer components {
  .offline {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 2rem 1.5rem;
    background: oklch(var(--lch-deep-stage));
    color: oklch(var(--lch-bone));
  }

  .offline__inner {
    max-width: 28rem;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .offline__logo {
    width: 5rem;
    height: 5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 24px oklch(var(--lch-flare) / 0.35));
  }

  .offline__heading {
    font-family: var(--font-display, "Outfit"), sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
  }

  .offline__subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: oklch(var(--lch-bone) / 0.78);
    margin: 0;
  }

  .offline__retry {
    margin-top: 0.5rem;
  }

  .offline__hint {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: oklch(var(--lch-bone) / 0.55);
    max-width: 22rem;
  }

  .offline-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .offline-inline__text {
    margin: 0;
    font-size: 0.9rem;
    color: oklch(var(--lch-bone) / 0.65);
  }
}
