.contact-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.contact-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 2752 / 508;
  overflow: hidden;
}

.contact-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.contact-banner h1 {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  font: 500 clamp(28px, 2.2vw, 40px)/1 "Lora", Georgia, serif;
  text-shadow: 0 1px 3px #111;
}

.contact-content {
  flex: 1;
  width: calc(100% - 36px);
  margin: 0 auto;
  padding: 54px 0 68px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.5;
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 110px);
  align-items: start;
  padding-bottom: 42px;
  border-bottom: 1px solid #d2d2d2;
}

.contact-details h2,
.join-us h2 {
  margin: 0 0 22px;
  color: #1b658f;
  font-size: clamp(20px, 1.5vw, 27px);
  font-weight: 500;
  line-height: 1.3;
}

.contact-details h2 strong {
  color: #111;
  font-weight: 700;
}

.contact-details h2 span {
  color: #111;
  font-size: .82em;
  font-weight: 400;
}

.contact-details p,
.join-us p {
  margin: 0 0 1em;
}

.contact-affiliation {
  margin-bottom: 0 !important;
}

.contact-affiliation span:last-child {
  white-space: nowrap;
}

.contact-address {
  margin-bottom: 0 !important;
}

.contact-address span,
.contact-affiliation span {
  display: block;
}

.contact-content a {
  color: #155486;
  text-decoration: underline;
  text-underline-offset: .13em;
}

.join-us h2 {
  font-style: normal;
}

.join-us {
  padding-top: 42px;
}

.join-us strong {
  font-weight: 700;
}

.join-contact {
  margin-top: 1.25em !important;
}

.join-contact strong {
  display: block;
  margin-top: .35em;
}

@media (max-width: 850px) {
  .contact-page {
    width: 100%;
  }

  .contact-content {
    width: calc(100% - 32px);
    padding-top: 38px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 34px;
  }

  .contact-affiliation span:last-child {
    white-space: normal;
  }

  .join-us {
    padding-top: 34px;
  }
}
