/* GARS site styles — mobile-first
 * Breakpoint checks: 320px (base), 768px (nav expand), 1024px (wide layout)
 */

:root {
  --bg: #0a0f1a;
  --bg-soft: #121a2b;
  --bg-card: #182236;
  --bg-elevated: #1e2d45;
  --text: #eef2f8;
  --muted: #9aa8bc;
  --accent: #3b9eff;
  --accent-dim: #2d8ae8;
  --accent-glow: rgba(59, 158, 255, 0.18);
  --signal: #f5a623;
  --signal-dim: #e8940f;
  --signal-glow: rgba(245, 166, 35, 0.12);
  --success: #3dd68c;
  --border: rgba(154, 168, 188, 0.2);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.25);
  --announce-bg: rgba(59, 158, 255, 0.1);
  --announce-border: rgba(59, 158, 255, 0.45);
  --welcome-bg: rgba(61, 214, 140, 0.08);
  --welcome-border: rgba(61, 214, 140, 0.38);
  --welcome-accent: var(--success);
  --storm-bg: rgba(245, 166, 35, 0.08);
  --storm-border: rgba(245, 166, 35, 0.35);
  --storm-accent: var(--signal);
  --focus-ring: 2px solid var(--accent);
  --focus-offset: 2px;
  --header-h: 4.25rem;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", Consolas, monospace;
  --radius: 0.625rem;
  --tap-min: 44px;
}

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

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, var(--signal-glow), transparent 50%),
    var(--bg);
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.65rem 1.15rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}

.skip:focus {
  left: 0;
  top: 0;
}

.page {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

/* ---- Sticky header ---- */
.top {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  min-height: var(--header-h);
  margin: 0 -1rem;
  padding: 0.65rem 1rem;
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.2;
  text-decoration: none;
}

.brand__link:hover { text-decoration: none; }

.brand__logo--round {
  display: block;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--border), var(--shadow-card);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand__name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brand__call {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--signal);
}

.top__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  padding: 0.5rem;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.social-link:hover {
  color: var(--accent);
  background: rgba(59, 158, 255, 0.1);
  text-decoration: none;
}

.social-link svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.nav-toggle:hover {
  border-color: var(--accent);
  background: var(--bg-card);
}

.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.top__nav {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 0.15rem;
  padding: 0.75rem 0 0.25rem;
  font-size: 0.95rem;
}

.top__nav--open {
  display: flex;
}

.top__nav a,
.top__nav .nav__link {
  display: block;
  min-height: var(--tap-min);
  padding: 0.65rem 0.85rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.top__nav a:hover,
.top__nav .nav__link:hover {
  color: var(--text);
  background: rgba(59, 158, 255, 0.08);
  text-decoration: none;
}

.top__nav a[aria-current="page"],
.top__nav .nav__link--active {
  color: var(--accent);
  background: rgba(59, 158, 255, 0.12);
  font-weight: 600;
}

@media (min-width: 768px) {
  .page { padding: 0 1.5rem 3rem; }

  .top {
    margin: 0 -1.5rem;
    padding: 0.75rem 1.5rem;
    flex-wrap: nowrap;
  }

  .brand__logo--round {
    width: 3.25rem;
    height: 3.25rem;
  }

  .brand__name { font-size: 1.2rem; }

  .nav-toggle { display: none; }

  .top__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
    gap: 0.25rem 0.5rem;
    padding: 0;
    font-size: 0.875rem;
  }

  .top__nav a,
  .top__nav .nav__link {
    min-height: auto;
    padding: 0.45rem 0.75rem;
  }
}

/* ---- Page headers (inner pages) ---- */
.page-header {
  padding: 2rem 0 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .page-header {
    text-align: left;
    padding: 2.5rem 0 2rem;
  }
}

.page-header__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.page-header__intro {
  margin: 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.0625rem);
}

.page-header--storm {
  padding-bottom: 1rem;
}

.page-header--storm .page-header__intro {
  max-width: none;
}

@media (min-width: 1024px) {
  .page { max-width: 60rem; }

  .top__nav { gap: 0.25rem 0.65rem; }
}

/* ---- Section divider ---- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-divider__icon {
  color: var(--signal);
  font-size: 0.85rem;
}

/* ---- Meeting announcement ---- */
.announcement {
  margin: 1.5rem 0 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--announce-bg), rgba(59, 158, 255, 0.04));
  border: 1px solid var(--announce-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card), 0 0 40px var(--accent-glow);
}

.announcement__badge {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.announcement__title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  line-height: 1.25;
}

.announcement__details {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .announcement__details {
    grid-template-columns: repeat(3, 1fr);
  }
}

.announcement__details div {
  display: grid;
  gap: 0.15rem;
}

.announcement__details dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dim);
}

.announcement__details dd {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.announcement__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- Welcome new ham ---- */
.welcome {
  margin: 1rem 0 0;
  padding: 1.15rem 1.5rem;
  background: var(--welcome-bg);
  border: 1px solid var(--welcome-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.welcome__badge {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--welcome-accent);
}

.welcome__message {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.welcome__call {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.welcome a {
  color: var(--welcome-accent);
}

/* ---- Hero ---- */
.hero {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: auto 1fr;
    align-items: center;
    text-align: left;
    gap: 2rem;
    padding: 2.5rem 0 3rem;
  }
}

.hero__logo-wrap {
  display: flex;
  justify-content: center;
}

.hero__logo {
  width: clamp(7rem, 22vw, 10rem);
  height: clamp(7rem, 22vw, 10rem);
  object-fit: contain;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px var(--border),
    0 0 0 6px rgba(59, 158, 255, 0.15),
    var(--shadow);
}

.hero__content { min-width: 0; }

.hero__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--signal);
}

.hero__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
}

.hero__tagline {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--accent);
  letter-spacing: 0.06em;
}

.hero__copy {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted);
}

@media (min-width: 768px) {
  .hero__copy { max-width: none; }
}

/* ---- News cards ---- */
.news-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid--featured {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.15s, transform 0.15s;
}

.news-card:hover {
  border-color: rgba(59, 158, 255, 0.4);
  transform: translateY(-2px);
}

.news-card--featured {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  border-color: rgba(59, 158, 255, 0.35);
}

.news-card__date {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal);
}

.news-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.news-card__title a {
  color: var(--text);
  text-decoration: none;
}

.news-card__title a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.news-card__excerpt {
  margin: 0 0 0.85rem;
  flex: 1;
  font-size: 0.92rem;
  color: var(--muted);
}

.news-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* ---- Community ---- */
.community-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.community-card {
  padding: 1.35rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.community-card__icon {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  line-height: 1;
}

.community-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--accent);
}

.community-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.community-card p + p {
  margin-top: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: var(--tap-min);
  margin-top: 0.85rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}

.btn:hover {
  background: var(--accent-dim);
  text-decoration: none;
}

.btn--outline {
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
}

.btn--outline:hover {
  background: rgba(59, 158, 255, 0.1);
}

/* ---- Gallery ---- */
.gallery-section {
  margin-bottom: 2.5rem;
}

.gallery-section__intro {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  color: var(--muted);
}

.gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.gallery__item {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-card);
  transition: border-color 0.15s;
}

.gallery__item:hover {
  border-color: rgba(59, 158, 255, 0.35);
}

.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery--logo {
  max-width: 48rem;
}

.gallery__item--logo img {
  aspect-ratio: auto;
  object-fit: contain;
  padding: 1.25rem 1.5rem 0.5rem;
  background: #fff;
}

.gallery__item figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ---- Hurricane Michael stats ---- */
.stats-box {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--storm-bg);
  border: 1px solid var(--storm-border);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .stats-box {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-box {
    grid-template-columns: repeat(6, 1fr);
  }
}

.stats-box__item {
  display: grid;
  gap: 0.2rem;
}

.stats-box__value {
  font-family: var(--mono);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--storm-accent);
  line-height: 1.2;
}

.stats-box__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.section--storm {
  background: var(--bg-soft);
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .section--storm {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section__sources {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---- Sections ---- */
.section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.section--first {
  border-top: none;
  padding-top: 0;
}

.section--intro-links {
  padding-bottom: 2rem;
}

.section--highlight {
  background: var(--bg-soft);
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .section--highlight {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dim);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.section__intro {
  margin: 0 0 1.25rem;
  max-width: 44rem;
  color: var(--muted);
}

.section__note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section__note--after-grid {
  margin-top: 1.25rem;
}

.subsection-title {
  margin: 1.75rem 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* ---- Topic list ---- */
.topic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .topic-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.topic-list li {
  padding: 1rem 1.15rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.topic-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.topic-list span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---- Link grid (MeshCore) ---- */
.link-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: var(--tap-min);
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: border-color 0.15s, background 0.15s;
}

.link-card:hover {
  border-color: var(--accent);
  background: rgba(59, 158, 255, 0.08);
  text-decoration: none;
}

.link-card__title {
  font-weight: 600;
  color: var(--text);
}

.link-card__url {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---- Resource lists ---- */
.resource-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-list li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.resource-list li:last-child { border-bottom: none; }

.resource-list--columns {
  display: grid;
  gap: 0 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.resource-list--columns li {
  border-bottom: none;
  padding: 0.35rem 0;
}

/* ---- Rules grid ---- */
.rules-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rule-card {
  padding: 1.15rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.rule-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--accent);
}

.rule-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- About cards ---- */
.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.card h2,
.card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.card p:last-child {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---- Footer ---- */
.foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

.foot__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.foot__social a {
  color: var(--muted);
  text-decoration: none;
}

.foot__social a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.foot__feedback {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.foot p { margin: 0; }

.foot a {
  color: var(--accent);
}
