.static-local-page .logo-link {
  display: inline-flex;
  align-items: center;
}

.static-local-page .main-nav a {
  color: #fff;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.static-local-page .main-nav a.active,
.static-local-page .main-nav a:hover {
  color: var(--colore-cta);
}

.static-local-page .menu-toggle {
  display: none;
}

.static-local-page .hero h1 {
  display: block;
  white-space: normal;
}

.static-local-page .hero h1 .highlight {
  display: inline-block;
  margin-left: 0;
}

.static-local-page .local-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.static-local-page .local-story-card {
  background: rgba(20, 20, 20, .66);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
  backdrop-filter: blur(15px);
}

.static-local-page .local-story-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--colore-cta);
  font: 800 .8rem/1 Manrope, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.static-local-page .local-story-card h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: .85rem;
}

.static-local-page .local-story-card p {
  color: #ccc;
  margin: 0;
}

.static-local-page .portfolio-demo-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.static-local-page .site-footer a {
  color: #ccc;
}

@media (max-width: 1024px) {
  .static-local-page .menu-toggle {
    display: flex;
  }

  .static-local-page .main-nav {
    display: none;
  }

  .static-local-page .main-nav.open {
    display: flex;
  }

  .static-local-page .local-story-grid {
    grid-template-columns: 1fr;
  }
}
