/* =============================================================================
   Mass Open — Ghost theme
   Design system carried over from massopen.ai: same tokens, same dark retro
   sci-fi treatment, extended to cover Ghost's editor cards and members flows.
   ========================================================================== */

:root {
  /* Palette — identical to massopen.ai */
  --accent: #5aa9ff;
  --accent-dark: #2f6df0;
  --ink: #eaf2ff;
  --ink-dim: #b9cdf0;
  --ink-faint: #6f86b8;
  --bg: #050816;
  --bg-panel: rgba(7, 12, 35, 0.72);
  --bg-panel-solid: #070c23;
  --border: rgba(90, 169, 255, 0.25);
  --border-strong: rgba(90, 169, 255, 0.4);

  --warn: #ffc46b;
  --danger: #ff8a8a;

  --header-h: 64px;
  --maxw: 1040px;
  --maxw-reading: 720px;

  --radius: 14px;
  --radius-sm: 8px;

  /* Ghost injects --gh-font-body / --gh-font-heading when an admin picks fonts
     in Branding settings. Falling back to the massopen.ai stack keeps the
     site's look by default while honouring that choice when it's made. */
  --font: var(--gh-font-body, "Helvetica Neue", Helvetica, Arial, sans-serif);
  --font-heading: var(--gh-font-heading, "Helvetica Neue", Helvetica, Arial, sans-serif);
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--bg);
  background-image: url("../images/mass-open-bg.svg");
  background-repeat: repeat;
  background-size: 240px 240px;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img { max-width: 100%; height: auto; }
a { color: var(--accent); }
.accent { color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--reading { max-width: var(--maxw-reading); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(5, 8, 22, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--maxw);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.nav__logo { max-height: 32px; width: auto; display: block; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav__link:hover,
.nav__link:focus,
.nav__link.is-active { color: #fff; border-color: var(--accent); }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}
.nav__bars,
.nav__bars::before,
.nav__bars::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px; height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__bars { top: 50%; transform: translate(-50%, -50%); }
.nav__bars::before { top: -6px; }
.nav__bars::after { top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* =============================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }

.btn--primary {
  color: #050816;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}
.btn--primary:hover { box-shadow: 0 0 24px rgba(90, 169, 255, 0.6); }

.btn--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: #fff; }

/* =============================================================================
   Hero / page hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 96px 0 72px;
}
.hero__inner { width: 100%; }

.hero__eyebrow,
.section__eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--accent);
}

.hero__title {
  font-family: var(--font-heading);
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 10vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 0 24px rgba(90, 169, 255, 0.5);
}

/* One long line needs a smaller floor than the stacked three-line lockup,
   which could afford a big minimum because each line was short. */
.hero__title--single {
  font-size: clamp(2.1rem, 9vw, 5rem);
  text-wrap: balance;
}

.hero__lede {
  margin: 0 auto 36px;
  max-width: 620px;
  font-size: 1.15rem;
  color: var(--ink-dim);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.page-hero {
  padding: 88px 0 40px;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-heading);
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 0 24px rgba(90, 169, 255, 0.5);
}
.page-hero__count { margin: 0; color: var(--ink-faint); font-size: 0.9rem; }

/* =============================================================================
   Sections
   ========================================================================== */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.section--alt { background: rgba(5, 8, 22, 0.55); }
.section--join { text-align: center; }

.section__title {
  font-family: var(--font-heading);
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
}

.section__lead {
  max-width: 680px;
  font-size: 1.1rem;
  color: var(--ink-dim);
}
.section__lead--center { margin-left: auto; margin-right: auto; }

/* =============================================================================
   Post feed
   ========================================================================== */
.feed { display: grid; gap: 22px; }
.feed--grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.feed--list { grid-template-columns: 1fr; }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(47, 109, 240, 0.12);
  transition: transform 0.15s ease, border-color 0.15s ease;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); }

.post-card { display: flex; flex-direction: column; }
.feed--list .post-card { flex-direction: row; }
.feed--list .post-card__media { flex: 0 0 34%; }

.post-card__media { display: block; overflow: hidden; }
.post-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.feed--list .post-card__image { border-bottom: none; border-right: 1px solid var(--border); }

.post-card__body { padding: 26px; display: flex; flex-direction: column; gap: 10px; }

.post-card__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.post-card__tag { font-weight: 700; }
.post-card__dot { opacity: 0.6; }
.post-card__lock {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 2px 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.post-card__title { font-family: var(--font-heading); margin: 0; font-size: 1.3rem; line-height: 1.25; }
.post-card__title a { color: #fff; text-decoration: none; }
.post-card__title a:hover { color: var(--accent); }

.post-card__excerpt { margin: 0; color: var(--ink-dim); font-size: 0.98rem; }

.post-card__more {
  margin-top: auto;
  padding-top: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
}
.post-card__more:hover { color: var(--accent); }

/* =============================================================================
   Single post
   ========================================================================== */
.post-hero { padding: 72px 0 28px; text-align: center; }
.post-hero__tag { color: var(--accent); text-decoration: none; }
.post-hero__title {
  font-family: var(--font-heading);
  margin: 0 0 18px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 24px rgba(90, 169, 255, 0.4);
}
.post-hero__lede { margin: 0 0 20px; font-size: 1.2rem; color: var(--ink-dim); }
.post-hero__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.post-hero__author { color: var(--ink-dim); font-weight: 700; }

.post-feature { margin: 32px 0 0; }
.post-feature__image {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(47, 109, 240, 0.18);
}
.post-feature figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* The tiling circuit pattern is the brand, but long-form body copy sitting
   directly on it is tiring to read — and reading is what this theme is for.
   So the article gets a near-opaque scrim while the masthead, feed, signup
   panels and footer keep the pattern showing through. */
.post {
  background: rgba(5, 8, 22, 0.9);
  border-bottom: 1px solid var(--border);
}

.post-body { padding: 40px 0 24px; }

/* --- Long-form prose ----------------------------------------------------- */
.prose { font-size: 1.08rem; line-height: 1.75; color: var(--ink-dim); }
.prose > * + * { margin-top: 1.4em; }

.prose h2, .prose h3, .prose h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.prose h2 { font-size: 1.7rem; }
.prose h3 { font-size: 1.35rem; }
.prose h4 { font-size: 1.15rem; }

.prose strong { color: var(--ink); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: #fff; }

.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.4em; }

.prose blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 1.15rem;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(90, 169, 255, 0.12);
  color: var(--accent);
}
.prose pre {
  overflow-x: auto;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel-solid);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink);
}
.prose pre code { background: none; padding: 0; color: inherit; }

.prose img, .prose video { border-radius: var(--radius); }

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.prose th, .prose td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.prose thead th { color: #fff; background: rgba(47, 109, 240, 0.14); }

/* =============================================================================
   Ghost editor (Koenig) cards
   ========================================================================== */
.kg-card { margin-top: 1.6em; }

/* Wide and full-bleed images break out of the reading measure. */
.kg-width-wide { max-width: min(var(--maxw), 92vw); margin-left: 50%; transform: translateX(-50%); }
.kg-width-full { max-width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.kg-width-full img { border-radius: 0; }

.kg-image-card figcaption,
.kg-embed-card figcaption,
.kg-gallery-card figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.kg-embed-card { display: flex; flex-direction: column; align-items: center; }
.kg-embed-card iframe { max-width: 100%; border-radius: var(--radius); }

/* Bookmark card */
.kg-bookmark-card a.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.kg-bookmark-card a.kg-bookmark-container:hover { border-color: var(--accent); transform: translateY(-2px); }
.kg-bookmark-content { flex: 1; padding: 22px 24px; }
.kg-bookmark-title { color: #fff; font-weight: 700; }
.kg-bookmark-description { margin-top: 8px; color: var(--ink-dim); font-size: 0.95rem; }
.kg-bookmark-metadata { margin-top: 12px; display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-faint); }
.kg-bookmark-icon { width: 18px; height: 18px; }
.kg-bookmark-thumbnail { flex: 0 0 32%; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* Callout card */
.kg-callout-card {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--bg-panel);
  color: var(--ink);
}
.kg-callout-emoji { font-size: 1.2rem; line-height: 1.5; }

/* Toggle card */
.kg-toggle-card {
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
}
.kg-toggle-heading { display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; }
.kg-toggle-heading-text { color: #fff; font-weight: 700; margin: 0; }
.kg-toggle-card-icon { width: 14px; height: 14px; fill: var(--accent); transition: transform 0.2s ease; }
.kg-toggle-state-open .kg-toggle-card-icon { transform: rotate(180deg); }
.kg-toggle-content { color: var(--ink-dim); }
.kg-toggle-state-close .kg-toggle-content { display: none; }

/* Button card */
.kg-button-card { display: flex; justify-content: center; }
.kg-btn {
  display: inline-block;
  padding: 13px 26px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #050816;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}
.kg-btn:hover { box-shadow: 0 0 24px rgba(90, 169, 255, 0.6); color: #050816; }

/* Header / signup cards rendered by the editor */
.kg-header-card { text-align: center; padding: 48px 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-panel); }
.kg-header-card h2 { color: #fff; }

/* Audio / file / product cards keep the panel look */
.kg-audio-card, .kg-file-card-container, .kg-product-card-container {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
  color: var(--ink);
}

/* Galleries */
.kg-gallery-container { display: flex; flex-direction: column; gap: 10px; }
.kg-gallery-row { display: flex; gap: 10px; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================================
   Members / signup
   ========================================================================== */
.signup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px auto 0;
  max-width: 560px;
}
.signup__input {
  flex: 1 1 260px;
  min-width: 0;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: rgba(5, 8, 22, 0.8);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
}
.signup__input::placeholder { color: var(--ink-faint); }
.signup__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(90, 169, 255, 0.25);
}
.signup__button { flex: 0 0 auto; }

/* Ghost toggles .loading / .success on the form; swap the button label. */
.signup__label--loading,
.signup__label--done { display: none; }
.signup.loading .signup__label { display: none; }
.signup.loading .signup__label--loading { display: inline; }
.signup.success .signup__label,
.signup.success .signup__label--loading { display: none; }
.signup.success .signup__label--done { display: inline; }
.signup.success .signup__input { opacity: 0.5; }

.signup__note {
  margin-top: 18px;
  min-height: 1.2em;
  font-size: 0.95rem;
  color: var(--danger);
}
.signup__note--ok { color: var(--accent); }
.signup__fine {
  margin: 10px auto 0;
  max-width: 480px;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* =============================================================================
   Pagination / post nav / tags
   ========================================================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--ink-faint);
}
.pagination a {
  color: var(--ink);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
}
.pagination a:hover { border-color: var(--accent); color: #fff; }

.post-nav { padding: 8px 0 72px; }
.post-nav__inner { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.post-nav__link {
  display: block;
  padding: 20px 22px;
  text-decoration: none;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.post-nav__link:hover { border-color: var(--accent); transform: translateY(-2px); }
.post-nav__link--next { text-align: right; }
.post-nav__dir { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; }
.post-nav__title { display: block; margin-top: 6px; color: #fff; font-weight: 700; }

.post-tags { margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.post-tags__tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--ink-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
}
.post-tags__tag:hover { border-color: var(--accent); color: #fff; }

/* Tables (shared with the error page) */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
  margin-top: 24px;
}
.tiers { width: 100%; border-collapse: collapse; text-align: left; }
.tiers th, .tiers td { padding: 16px 20px; border-bottom: 1px solid var(--border); vertical-align: top; }
.tiers thead th { color: #fff; background: rgba(47, 109, 240, 0.14); font-weight: 800; }
.tiers tbody th { color: var(--accent); white-space: nowrap; }
.tiers td { color: var(--ink-dim); }
.tiers tbody tr:last-child th, .tiers tbody tr:last-child td { border-bottom: none; }

/* =============================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 8, 22, 0.85);
  padding: 48px 0;
  text-align: center;
}
.site-footer__brand { margin: 0 0 8px; font-size: 1.3rem; font-weight: 800; color: #fff; }
.site-footer__note { margin: 0 auto 18px; max-width: 560px; color: var(--ink-dim); }
.site-footer__nav {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.site-footer__nav a { color: var(--ink-dim); text-decoration: none; font-size: 0.95rem; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__meta { margin: 0; font-size: 0.9rem; color: var(--ink-faint); display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 8, 22, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  /* Only caps the open/close transition. Kept well above the tallest
     realistic menu so extra nav items can never clip. */
  .nav__menu.is-open { max-height: 640px; }
  .nav__link { display: block; padding: 14px 24px; border-bottom: none; }
  .nav__link:hover, .nav__link.is-active { border-color: transparent; background: rgba(90, 169, 255, 0.08); }
  .nav__item--cta { padding: 10px 24px 14px; }
  .nav__item--cta .btn { display: block; text-align: center; }

  .feed--list .post-card { flex-direction: column; }
  .feed--list .post-card__image { border-right: none; border-bottom: 1px solid var(--border); }

  .kg-width-wide, .kg-width-full { max-width: 100%; margin-left: 0; transform: none; }

  .section { padding: 56px 0; }
  .pagination { flex-direction: column; }
}
