.section {
  padding: var(--space-2xl) 0;
  scroll-margin-top: calc(var(--header-height) + 4px + 0.75rem);
}

.section--alt {
  background: var(--vzp-gray-bg);
}

.section--muted {
  background: var(--vzp-gray-alt);
}

.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.hero-layout {
  display: grid;
  gap: var(--space-xl);
}

.hero-layout > * {
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0 0 var(--space-md);
  color: var(--vzp-dark-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-kicker::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.5px;
  background: var(--vzp-red);
}

.hero-emphasis {
  display: block;
  font-size: 1.28em;
  line-height: calc(1em + 4px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-lg);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1.5px;
  background: var(--vzp-red);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: var(--space-md);
  margin: 0;
  align-items: start;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  border: 1.5px solid var(--vzp-red);
  border-radius: 50%;
  background: var(--vzp-white);
  color: var(--vzp-red);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-body h4 {
  margin-bottom: var(--space-xs);
}

.contact-panel {
  display: grid;
  gap: var(--space-lg);
}

.contact-details .muted {
  margin-bottom: var(--space-sm);
}

.contact-panel address p {
  margin-bottom: var(--space-2xs);
}

.contact-email {
  margin-top: var(--space-md) !important;
  font-weight: 500;
}

.contact-email a {
  font-size: 1.125rem;
}
.activity-container{
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 40em) {
  .hero {
    padding-top: var(--space-2xl);
  }
}

@media (min-width: 64em) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.8fr);
    gap: var(--space-3xl);
  }

  .timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  .timeline::before {
    top: 0.7rem;
    bottom: auto;
    width: 100%;
    height: 1.5px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-body {
    width: 100%;
    height: 260px;
    display: grid;
    grid-template-rows: 3.5rem 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
  }
}
