@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: optional;
  src: url('../fonts/bricolage-grotesque-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #1877F2;
  --blue-hover: #1457C5;
  --blue-dark: #0866DC;
  --blue-deep: #0A4DB2;
  /* WCAG AA: small text on --blue-tint / pale chips */
  --blue-on-tint: #063056;
  --blue-tint: #E7F3FF;
  --blue-tint-2: #F0F7FF;
  --bg: #F0F2F5;
  --card: #FFFFFF;
  --ink: #050505;
  --ink-body: #1C1E21;
  --ink-muted: #65676B;
  --border: #DADDE1;
  --border-soft: #E4E6EB;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(24, 119, 242, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-blue: 0 8px 24px rgba(24, 119, 242, 0.18);
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --hero-column: 880px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--ink-body);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  max-width: var(--hero-column);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 0 1 auto;
}

.logo span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-body);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue);
  text-decoration: none;
}

.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  color: var(--ink);
}

.nav-menu-toggle:focus-visible {
  outline: 2px solid var(--blue-dark);
  outline-offset: 2px;
}

.nav-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}

.nav-menu-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.nav--open .nav-menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.nav--open .nav-menu-icon span:nth-child(2) {
  opacity: 0;
}

.nav.nav--open .nav-menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-dropdown {
  display: flex;
  align-items: center;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--blue-tint-2) 0%, var(--bg) 100%);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero .breadcrumb-bar {
  padding-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--hero-column);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Reduce CLS when webfonts swap metrics vs fallback (lh relative to computed line-height). */
@supports (min-height: 1lh) {
  .hero-inner>h1 {
    min-height: calc(3 * 1lh);
  }
}

@media (max-width: 600px) {
  @supports (min-height: 1lh) {
    .hero-inner>h1 {
      min-height: calc(4 * 1lh);
    }
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-body);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

h1 .accent {
  color: var(--blue);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ===== Generator form ===== */
.gen-form {
  display: flex;
  gap: 8px;
  background: white;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.gen-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  background: transparent;
  color: var(--ink);
}

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

.gen-form button {
  background: var(--blue-dark);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.gen-form button:hover {
  background: var(--blue-deep);
}

.gen-form button:active {
  transform: scale(0.98);
}

.hero-meta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-muted);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta span::before {
  content: '\2713';
  color: var(--blue-deep);
  font-weight: 700;
}

/* ===== Sections ===== */
section {
  padding: 80px 24px;
  border-top: 1px solid var(--border-soft);
}

section:nth-child(even) {
  background: white;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-on-tint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--blue-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== Cards ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-tint);
}

.card-num {
  width: 40px;
  height: 40px;
  background: var(--blue-tint);
  color: var(--blue-on-tint);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-deep));
  color: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-blue);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  flex: 1;
}

.card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-on-tint);
  background: var(--blue-tint);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.card-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-soft);
}

.chip {
  font-size: 12.5px;
  font-weight: 500;
  background: var(--bg);
  color: var(--ink-body);
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
}

a.chip-domain-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

a.chip-domain-link:hover {
  border-color: var(--blue-tint);
  color: var(--blue-deep);
  text-decoration: none;
}

a.chip-domain-link:focus-visible {
  outline: 2px solid var(--blue-dark);
  outline-offset: 2px;
}

.card.step-card {
  position: relative;
}

.card.step-card::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--border);
  border-right: 2px solid var(--border);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.card.step-card:last-child::before {
  display: none;
}

.card.mistake .card-num {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== FAQ ===== */
.faq-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-card:hover {
  border-color: var(--blue-tint);
  box-shadow: var(--shadow-sm);
}

.faq-card .q {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-card .q::before {
  content: 'Q';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--blue-dark);
  color: white;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.faq-card .a {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  padding: 64px 24px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  transform: rotate(-20deg);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: var(--blue-on-tint);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* ===== Footer (matches CTA blue gradient) ===== */
.footer-site {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 24px 28px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer-site::before {
  content: '';
  position: absolute;
  top: -55%;
  right: -12%;
  width: 58%;
  height: 220%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 58%);
  transform: rotate(14deg);
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 36px 40px;
  align-items: start;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand-col {
  min-width: 0;
}

.footer-logo {
  color: white !important;
  text-decoration: none !important;
}

.footer-logo:hover {
  opacity: 0.92;
}

.footer-brand-desc {
  margin: 18px 0 0;
  max-width: 26rem;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer-section {
  min-width: 0;
}

.footer-section-title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.footer-link-list a:hover {
  color: white;
  text-decoration: underline;
}

.footer-link-list--bullet {
  list-style: disc;
  padding-left: 1.15rem;
  gap: 6px;
}

.footer-link-list--bullet li {
  padding-left: 2px;
}

.footer-link-list--bullet li::marker {
  color: rgba(255, 255, 255, 0.45);
}

.footer-link-list--bullet a {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 36rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: auto;
  }
}

.footer-bottom {
  padding-top: 4px;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

/* ===== Legal pages ===== */
.legal-page {
  padding: 48px 24px 72px;
  background: var(--bg);
  min-height: 45vh;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 36px);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.legal-inner h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 26px 0 10px;
  color: var(--ink);
}

.legal-inner p,
.legal-inner li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-body);
  margin-bottom: 12px;
}

.legal-inner ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.legal-inner a {
  color: var(--blue);
}

/* ===== Breadcrumb (same column as hero; centered above headline on desktop) ===== */
.hero>.breadcrumb-bar {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  max-width: var(--hero-column);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  z-index: 2;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.hero>.breadcrumb-bar::-webkit-scrollbar {
  height: 4px;
}

.hero>.breadcrumb-bar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  box-shadow: var(--shadow-sm);
  flex-wrap: nowrap;
  white-space: nowrap;
  width: max-content;
  max-width: none;
}

.breadcrumb a {
  color: var(--ink-body);
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb strong {
  color: var(--ink);
  font-weight: 600;
}

.breadcrumb span {
  color: var(--border);
}

/* ===== Clickable cards (whole-card link) ===== */
.topic-card,
.keyword-card {
  text-decoration: none;
  color: inherit;
}

.topic-card:hover,
.keyword-card:hover {
  text-decoration: none;
}

.topic-card .card-cta,
.keyword-card .card-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-soft);
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 14px;
}

.keyword-card h3 {
  text-transform: capitalize;
  margin-bottom: 6px;
}

.keyword-card small {
  display: block;
  color: var(--ink-muted);
  font-size: 12.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  flex: 1;
}

/* Category hub: generator links in a 3-column table */
.category-links-table {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  table-layout: fixed;
}

.category-links-table td {
  width: 33.333%;
  vertical-align: top;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-soft);
}

.category-links-table tr:last-child td {
  border-bottom: none;
}

.category-links-table a {
  display: inline-block;
  color: var(--blue-deep);
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  line-height: 1.35;
}

.category-links-table a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .category-links-table {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .category-links-table td {
    padding: 8px 6px;
    word-break: break-word;
  }

  .category-links-table a {
    font-size: 0.98rem;
  }
}

.empty-state {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: white;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--ink-muted);
}

.empty-state code {
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card.step-card::before {
    display: none;
  }

  .nav-inner {
    padding: 12px 16px;
  }

  .logo {
    font-size: clamp(14px, 4.2vw, 18px);
  }

  .nav-links {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 0;
  }

  .nav-menu-toggle {
    display: flex;
  }

  .nav-dropdown {
    display: none;
    flex-basis: 100%;
    width: 100%;
    order: 3;
    padding-top: 12px;
    margin-top: 10px;
    border-top: 1px solid var(--border-soft);
  }

  .nav.nav--open .nav-dropdown {
    display: block;
  }

  .nav-dropdown .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-dropdown .nav-links a {
    padding: 14px 10px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }

  .nav-dropdown .nav-links a:active {
    background: var(--bg);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 20px;
  }

  .hero {
    padding: 56px 20px 48px;
  }

  .hero:has(.breadcrumb-bar) {
    padding-top: 76px;
  }

  .hero>.breadcrumb-bar {
    top: 14px;
    padding: 0 16px;
    justify-content: flex-start;
  }

  .breadcrumb {
    font-size: 12px;
    padding: 5px 12px;
    gap: 6px;
  }

  .gen-form {
    flex-direction: column;
    padding: 12px;
  }

  .gen-form button {
    width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta span {
    justify-content: center;
    width: 100%;
  }

  .nav-inner {
    padding: 10px 12px;
  }
}