.intro-editorial {
  display: grid;
  gap: 2rem;
}

.intro-editorial h2 {
  max-width: 14ch;
}

.help-preview {
  display: grid;
  gap: 2rem;
}

.help-preview .text-link {
  margin-top: 1.5rem;
}

.local-band {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
  background: var(--color-navy-deep);
  overflow: hidden;
}

.local-band__media {
  position: absolute;
  inset: 0;
}

.local-band__media img,
.local-band__media picture,
.local-band__media picture img {
  width: 100%;
  height: 100%;
}

.local-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 25, 43, 0.2) 0%,
    rgba(8, 25, 43, 0.78) 100%
  );
}

.local-band__content {
  position: relative;
  z-index: 1;
  padding-bottom: 4.5rem;
  max-width: 36rem;
}

.local-band h2 {
  color: var(--color-white);
}

.team-grid {
  display: grid;
  gap: 1.75rem;
}

.profile {
  display: grid;
  gap: 2rem;
}

.profile__image {
  overflow: hidden;
  background: var(--color-navy);
}

.profile__image img,
.profile__image picture,
.profile__image picture img {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.profile__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.contact-layout {
  display: grid;
  gap: 3rem;
}

.location-panel {
  display: grid;
  gap: 2rem;
}

.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .intro-editorial {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 4rem;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .profile {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 4rem;
  }

  .profile--reverse .profile__image {
    order: 1;
  }

  .location-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .profile--reverse .profile__image {
    order: 0;
  }

  .team-grid .team-card:last-child {
    max-width: none;
  }
}

@media print {
  .site-header,
  .nav-mobile,
  .nav-toggle,
  .cta-band .btn {
    position: static;
  }

  .hero,
  .section--navy,
  .cta-band,
  .site-footer,
  .local-band {
    background: var(--color-white) !important;
    color: var(--color-charcoal) !important;
  }

  .hero h1,
  .cta-band h2,
  .section--navy h2 {
    color: var(--color-navy) !important;
  }
}
