:root {
  --page: #fffdec;
  --ink: #292929;
  --blue: #004a98;
  --green: #006b3f;
  --link: #0879c9;
  --max: 1120px;
  --reading-measure: 72ch;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.site-content {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 4rem;
}
.hero {
  text-align: center;
}
.hero__image {
  display: block;
  width: min(100%, 690px);
  height: auto;
  margin: 0 auto;
}
.hero__label {
  margin: 1rem 0 1.2rem;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
}
.hero__anniversary {
  margin: 0 0 1.1rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
}
.hero__anniversary p {
  margin: 0;
}
.prose p {
  margin: 0 0 1rem;
}
.intro,
.leadership {
  max-width: var(--reading-measure);
  margin-inline: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.prose a {
  color: var(--link);
  text-decoration: none;
}
.prose a:hover,
.prose a:focus-visible {
  text-decoration: underline;
}
h2 {
  margin: 0 0 0.7rem;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin: 1.5rem 0 2.25rem;
}
.story-grid > img {
  width: auto;
  max-width: 100%;
  max-height: 310px;
  height: auto;
  justify-self: center;
}
.story-grid--reverse > img {
  order: 2;
  justify-self: end;
}
.leadership {
  margin: 2rem 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.gallery img {
  width: 100%;
  height: auto;
}
.join {
  width: min(100%, 34rem);
  margin-top: 2.5rem;
}
.join h2 {
  margin-top: 1rem;
}
.contact-list {
  font-style: normal;
}
.contact-list p {
  margin-bottom: 0.8rem;
}
.enrollment-links {
  line-height: 1.45;
}
.meeting-map {
  width: min(100%, 25rem);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.meeting-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.facebook {
  display: inline-block;
  max-width: 15rem;
  margin-top: 1.1rem;
}
.facebook img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .site-content {
    width: min(100% - 1.25rem, var(--max));
    margin-top: 0.75rem;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .story-grid > img,
  .story-grid--reverse > img {
    order: initial;
    justify-self: start;
    max-width: 390px;
  }
  .gallery {
    gap: 0.45rem;
  }
}
