/* Footer-only “Where to go next” flywheel */
.link-flywheel {
  font-family: system-ui, -apple-system, sans-serif;
  margin: 2rem 0;
  padding: 1.1rem 1.25rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  transition: box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-flywheel:hover {
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.06);
}

.link-flywheel .lf-title {
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin: 0 0 0.75rem;
}

.link-flywheel ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.link-flywheel li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: baseline;
}

.link-flywheel .lf-tag {
  font-weight: 700;
  color: #0f172a;
  min-width: 5.5rem;
}

.link-flywheel a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.link-flywheel a:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.link-flywheel .lf-down a.lf-primary {
  background: #0f172a;
  color: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.15);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.link-flywheel .lf-down a.lf-primary:hover {
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 10, 10, 0.2);
}
