/* ---------------------------------------------------------------------------
   Member portal styles, for /me.

   Written for the same phone the check-in page was written for, and mostly the
   same shapes: one column, 48px tap targets, no layout that only works above
   320px. What is different is that this screen is read rather than filled in,
   so it carries a list of figures and those figures have to line up.
   --------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
   Public Sans, self hosted.

   THE WOFF2 FILES ARE NOT IN THE REPO YET. Until somebody drops them into
   web/assets/fonts/public-sans/, this @font-face resolves to nothing and every
   rule below falls through to ui-sans-serif, which is the intended behaviour
   rather than a broken page: font-display: swap means text is readable from
   the first paint either way. No Google Fonts link, and nothing served from
   anybody else's host.
   --------------------------------------------------------------------------- */
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/public-sans/PublicSans-VariableFont.woff2') format('woff2-variations'),
       url('../fonts/public-sans/PublicSans-VariableFont.woff2') format('woff2');
}

/* ---------------------------------------------------------------------------
   Brand tokens, sampled from the club logo.

   THIS BLOCK IS DUPLICATED VERBATIM FROM checkin.css AND admin.css. Three
   surfaces, one product, and no build step that could share a file between
   them, so the guard against drift is a check rather than an import:
   mock/verify-portal.mjs compares this block against checkin.css value for
   value, in both schemes, exactly as mock/verify-admin.mjs already compares
   the other two.

   GOLD IS A FILL, NEVER A FOREGROUND. #e6c845 is 1.57:1 on this page
   background, so it carries text only as a background with --gold-ink on top,
   and it carries a line only when that line is thick enough to read as a bar.
   Checked in mock/verify-portal.mjs.
   --------------------------------------------------------------------------- */
:root {
  --font: 'Public Sans', ui-sans-serif, system-ui, sans-serif;

  --bg: #faf9f6;
  --surface: #ffffff;
  --ink: #2a2721;
  --ink-muted: #6b6456;
  --line: #e3ded3;
  --line-strong: #c9c1b2;

  --accent: #59328f;
  --accent-ink: #ffffff;
  --accent-soft: #f0eaf7;

  --gold: #e6c845;
  --gold-ink: #2a2721;
  --gold-soft: #fbf3d8;

  --danger: #8a1f16;
  --danger-soft: #fbeae6;
  --ok: #1c5c34;
  --ok-soft: #eaf3ea;

  --focus: #1573c4;

  --radius: 12px;
  --tap: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Every view and field below sets `display`, which outranks the user agent's
   `[hidden] { display: none }`. The page uses the hidden attribute as its only
   visibility mechanism, so it wins here. */
[hidden] {
  display: none !important;
}

html {
  /* 16px inputs, so iOS Safari does not zoom when a field takes focus. */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.45;
  /* This whole screen is a column of figures, and a proportional 1 among 9s is
     the difference between scanning and reading. */
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  /* A bar, not a hairline: 3px so the gold reads as a deliberate edge. */
  border-top: 3px solid var(--gold);
}

.app {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.25rem 1rem calc(2rem + env(safe-area-inset-bottom));
}

@media (min-width: 26rem) {
  .app {
    padding-top: 2rem;
  }
}

/* A member still opens this on a phone first, so the column stays put below
   here. Above it, the same single column gets a little more room to read in,
   rather than the requirements panel and the About prose sitting inside a
   phone-width strip on a laptop screen. */
@media (min-width: 40rem) {
  .app {
    max-width: 36rem;
  }

  .app.results-view {
    max-width: 72rem;
  }
}

.brand-row {
  display: flex;
  margin: 0 0 0.75rem;
}

.emblem {
  display: block;
  width: 40px;
  height: 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.who {
  margin: 0;
  font-weight: 600;
}

.view {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.view-centred {
  align-items: flex-start;
  gap: 0.75rem;
  padding-top: 1rem;
}

.title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.body {
  margin: 0;
  color: var(--ink);
}

.muted {
  margin: 0;
  color: var(--ink-muted);
}

.small {
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------- */
/* Panels and fields                                                            */
/* --------------------------------------------------------------------------- */

.panel,
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.label {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.input,
.select {
  width: 100%;
  min-height: var(--tap);
  padding: 0.625rem 0.75rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  appearance: none;
}

.textarea {
  min-height: 5rem;
  line-height: 1.4;
  resize: vertical;
}

.input-number {
  max-width: 9rem;
}

.input::placeholder {
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------- */
/* Progress                                                                     */
/* --------------------------------------------------------------------------- */

.progress-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
}

.figures {
  margin: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Decorative. The figures line says the same thing in words, because a fill on
   its own is nothing to a screen reader and nothing to somebody who cannot
   tell the two colours apart. */
.bar {
  height: 0.5rem;
  margin: 0.25rem 0 0.5rem;
  overflow: hidden;
  background: var(--line);
  border-radius: 999px;
}

.bar-fill {
  display: block;
  height: 100%;
  background: var(--accent);
}

/* Gold as a fill with the gold ink on top, which is the only way it can carry
   a word at 1.57:1 against the page. */
.state {
  align-self: flex-start;
  margin: 0;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-ink);
  background: var(--gold);
  border-radius: 999px;
}

.checklist {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--line);
}

.check-row:last-child {
  border-bottom: 0;
}

.check-row[data-depth='2'] {
  padding-left: 1.5rem;
}

.check-mark {
  width: 1rem;
  color: var(--ink-muted);
  text-align: center;
}

.check-row[data-met='true'] .check-mark {
  color: var(--ok);
}

.check-label {
  flex: 1 1 auto;
}

.check-figures {
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.points {
  margin: 0.75rem 0 0;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.score-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.summary-grid div {
  min-width: 0;
  padding: 0.75rem;
  background: var(--bg);
  border-radius: 10px;
}

.summary-grid dt,
.record-details dt {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.summary-grid dd,
.record-details dd {
  margin: 0.125rem 0 0;
  font-weight: 700;
}

.score-actions,
.no-match-actions,
.inline-error {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.requirement-progress-title {
  margin-top: 0.75rem;
}

.inline-error {
  color: var(--danger);
  font-weight: 600;
}

.no-match {
  gap: 0.75rem;
}

.contact-address {
  align-self: flex-start;
  min-height: 2.75rem;
  color: var(--accent);
  overflow-wrap: anywhere;
}

.record-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.record-filter {
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
}

.record-filter[aria-pressed='true'] {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

.record-table-wrap {
  display: none;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.record-table {
  width: 100%;
  min-width: 58rem;
  border-collapse: collapse;
  text-align: left;
}

.record-table th,
.record-table td {
  padding: 0.625rem;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.record-table thead th {
  color: var(--ink-muted);
  font-size: 0.8125rem;
}

.record-table tbody tr:last-child > * {
  border-bottom: 0;
}

.record-cards {
  display: grid;
  gap: 0.75rem;
}

.record-card {
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.record-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.record-card h3 {
  min-width: 0;
  margin: 0;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.record-details {
  display: grid;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}

.record-details div {
  min-width: 0;
}

.record-number {
  font-variant-numeric: tabular-nums;
}

.credit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.record-status {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border: 1px solid currentColor;
  border-radius: 999px;
  white-space: nowrap;
}

.record-status[data-status='attended'] {
  color: var(--ok);
}

.record-status[data-status='waiting'] {
  color: var(--accent);
}

.record-status[data-status='declined'] {
  color: var(--danger);
}

@media (min-width: 48rem) {
  .record-table-wrap {
    display: block;
  }

  .record-cards {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
   The event history

   One <details> per category. The summary is the category and its total, so a
   shut section still says what is in it, and the rows underneath line up as
   three columns: what it was, when it was, and what the member got for it.
   --------------------------------------------------------------------------- */

.event-groups {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event-group-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  min-height: var(--tap);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.event-group-head:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.event-group-name {
  flex: 1 1 auto;
}

.event-group-figure {
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}

.event-list {
  margin: 0;
  padding: 0 0.75rem 0.5rem;
  list-style: none;
}

.event-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.375rem 0;
  border-top: 1px solid var(--line);
}

.event-title {
  flex: 1 1 auto;
}

.event-date {
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Wide enough that the column holds its place on the rows that say nothing,
   which is most of them. */
.event-mark {
  min-width: 4.5rem;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.event-row[data-status='attended'] .event-mark {
  color: var(--ok);
  font-weight: 700;
}

.event-row[data-status='declined'] .event-mark {
  color: var(--danger);
}

/* An event they have not been to is not a lesser row, it is a quieter one. */
.event-row[data-status='none'] .event-title {
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------- */
/* The two tabs                                                                 */
/* --------------------------------------------------------------------------- */
/* Two of them, full width between them, because a phone gets one thumb and
   there is nothing else competing for the top of this screen. */

.tabs {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.tab {
  flex: 1 1 0;
  min-height: var(--tap);
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.tab[aria-selected='true'] {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

/* --------------------------------------------------------------------------- */
/* Which one is you                                                             */
/* --------------------------------------------------------------------------- */

.results {
  margin: 0;
  padding: 0;
  list-style: none;
}

.result {
  border-bottom: 1px solid var(--line);
}

.result:last-child {
  border-bottom: 0;
}

.result-button {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
  width: 100%;
  min-height: var(--tap);
  padding: 0.5rem 0;
  font: inherit;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.result-name {
  font-weight: 600;
}

.result-meta {
  color: var(--ink-muted);
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------- */
/* What an Honorary Member is                                                   */
/* --------------------------------------------------------------------------- */
/* Three tiers, not one box: a plain introduction, the requirements in a panel
   like any other on this page, then an open "About" section below a rule.
   Nothing in here is a card just to be a card, so the eye has one thing to
   land on at each level instead of one long bordered document. */

.honorary {
  margin-top: 1.75rem;
}

/* In results, the view's standard gap already separates the attendance card
   from this section. The larger introduction gap remains unchanged on the
   initial lookup screen. */
.app.results-view .honorary {
  margin-top: 0;
}

/* The About section needs its divider only when it follows the introductory
   requirements. In results, the attendance card and the view gap provide the
   separation. */
.app.results-view .honorary-about {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* Shared by both headings in this section. Bigger than a panel title, because
   these two are the section's own table of contents, not a label on a box. */
.section-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.honorary-body {
  margin: 0;
  color: var(--ink);
}

.honorary-requirements {
  margin-top: 1rem;
}

.honorary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.honorary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
  padding: 0.375rem 0;
  border-top: 1px solid var(--line);
}

.honorary-row:first-child {
  border-top: 0;
}

.honorary-row[data-depth='2'] {
  padding-left: 1.25rem;
}

.honorary-label {
  flex: 1 1 auto;
  font-weight: 600;
}

.honorary-need {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.honorary-from {
  flex: 1 1 100%;
  color: var(--ink-muted);
  font-size: 0.875rem;
}

/* A rule, not another box: enough of a break that "About" reads as a new
   section, without stacking a second border under the requirements panel. */
.honorary-about {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.honorary-about > .section-title {
  margin-bottom: 1rem;
}

.faq-question {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.honorary-answer {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.honorary-answer + .honorary-answer {
  margin-top: 0.5rem;
}

/* Noticeably more room between questions than between two paragraphs of the
   same answer, so the eye can tell "new question" from "still reading". */
.faq-item + .faq-item {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------- */
/* The leaderboard                                                              */
/* --------------------------------------------------------------------------- */
/* A row is a button, whole. A chevron the size of a full stop is not a target on
   a phone, and there is nothing else on the row to press. */

.board-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-row {
  border-bottom: 1px solid var(--line);
}

.board-row:last-child {
  border-bottom: 0;
}

.board-button {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  min-height: var(--tap);
  padding: 0.5rem 0;
  font: inherit;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.board-rank {
  min-width: 2ch;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.board-name {
  flex: 1 1 auto;
  font-weight: 600;
}

/* Gold as a fill, never as a foreground: the star sits on the soft gold with the
   gold ink on top, the same rule the honorary pill follows. */
.board-star {
  padding: 0 0.3rem;
  color: var(--gold-ink);
  background: var(--gold-soft);
  border-radius: 999px;
}

.summary-star,
.score-name-star {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0.75rem;
  line-height: 1.4;
  vertical-align: 0.1em;
}

.board-points {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.board-breakdown {
  padding: 0.25rem 0 0.75rem 2.75rem;
}

.board-figure {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  padding: 0.1875rem 0;
}

.board-figure[data-zero='true'] {
  color: var(--ink-muted);
}

.board-figure-name {
  font-size: 0.9375rem;
}

.board-figure-value {
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------- */
/* Buttons                                                                      */
/* --------------------------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap);
  padding: 0.625rem 1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  touch-action: manipulation;
}

.full {
  width: 100%;
}

.button-primary {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

.button-secondary {
  background: var(--surface);
}

.button-quiet {
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
}

.button[disabled] {
  opacity: 0.65;
  cursor: default;
}

/* A ring that clears the control on both schemes, and never only a colour
   change. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------- */
/* Messages                                                                     */
/* --------------------------------------------------------------------------- */

.message {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  background: var(--danger-soft);
  border: 1px solid var(--danger);
  border-radius: var(--radius);
}

.message-title {
  margin: 0;
  font-weight: 600;
  color: var(--danger);
}

.message-body {
  margin: 0;
  font-size: 0.9375rem;
}

.note {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  color: var(--ok);
  background: var(--ok-soft);
  border: 1px solid var(--ok);
  border-radius: var(--radius);
  font-weight: 600;
}

.notice {
  display: block;
  margin: 0;
  padding: 0.75rem;
  background: var(--accent-soft);
  border-radius: 10px;
  font-size: 0.9375rem;
}

.notice-title {
  font-weight: 600;
}

.error {
  margin: 0;
  color: var(--danger);
  font-size: 0.9375rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------- */
/* Utility                                                                      */
/* --------------------------------------------------------------------------- */

.spinner {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  border: 3px solid var(--line-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation-duration: 3s;
  }

  * {
    scroll-behavior: auto !important;
  }
}

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

/* --------------------------------------------------------------------------- */
/* Footer                                                                       */
/* --------------------------------------------------------------------------- */

.site-footer {
  width: 100%;
  min-width: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: 100%;
  max-width: 32rem;
  min-width: 0;
  margin: 0 auto;
  padding: 1rem 1rem calc(1.5rem + env(safe-area-inset-bottom));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.footer-link:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.footer-link:focus-visible {
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
}

.footer-link:active {
  color: var(--accent-ink);
  background: var(--accent);
}

.footer-icon {
  display: block;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
}

.footer-meta {
  min-width: 0;
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (min-width: 40rem) {
  .footer-inner {
    max-width: 36rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}
