/* Hero section */

.hero-grid {
  display: flex;
  gap: 2em;
  flex-direction: row;
  align-items: center;
  /* align-items: start; */
}

.hero-image{
  margin: 0 0 2em;
  padding: 0;
  border-radius: 90em;
  height: 16em;
  width: 16em;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-title {
  margin: 0 0 16px;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}

.lead {
  margin: 0 0 24px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--bg-alt-soft);
  border-radius: 8px;
  min-width: 20em;
  height: max-content;
}

.hero-facts li {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hero-facts li:last-child {
  border-bottom: none;
}

.hero-facts .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.hero-facts .value {
  display: block;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 770px) {
  .hero-grid {
    flex-direction: column;
  }
}