.main {
  padding: 20px;
  flex-direction: column;
  display: flex;
}

.content-wrapper {
  align-items: flex-start;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-top: 20px;
  max-width: 1280px;
  width: 100%;
  
  @media screen and (min-width: 960px) {
    grid-template-columns: 1fr 1fr;
  }
}

#map {
  -webkit-filter: grayscale(100%);
  aspect-ratio: 4 / 3;
  display: block;
  filter: grayscale(100%);
  width: 100%;
}

#map iframe {
  border: 1px solid lightgray;
}

.text {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;

  & > *:last-child {
    margin-bottom: 40px;
  }

  & p {
    margin-top: 0;
    margin-bottom: 1em;
  }
}

.text-content {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;

  & a {
    text-decoration: underline;
    text-decoration-thickness: 0.05em;
    text-underline-offset: 0.325em;
  }
}

.curriculum {
  border-top: 1px solid;
  display: flex;
  gap: 20px;
  margin: 0 20px;
  padding: 20px 0;
  width: 100%;

  & a {
    color: inherit;
    text-decoration: none;
  }
}