/* Layered on top of Pico classless. */

.nav-home {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 22%;
}

/* Pico leaves the footer as a block, so its links would run together. */
body > footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.hero {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-logo {
  width: 6rem;
  height: 6rem;
  border-radius: 22%;
}

.hero h1,
.hero p {
  margin-bottom: 0;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 12.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.6rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
}

.badge:hover,
.badge:focus {
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
}

/* Not a link — the iOS app is not released yet. */
.badge-soon {
  background: transparent;
  border-color: currentColor;
  color: var(--pico-muted-color);
}

.badge svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

.badge span {
  display: flex;
  flex-direction: column;
}

.badge small {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge strong {
  font-size: 1.05rem;
  font-weight: 500;
}
