.course-map {
  display: block;
  min-height: 0;
  background: #d8d3c8;
  border: 12px solid white;
  box-shadow: 14px 14px 0 #9de0db;
}

.hero-art {
  background-image: linear-gradient(0deg, rgba(8,44,59,.08), rgba(8,44,59,.02)), url('lazy-lobster-hero.png');
  background-color: #9de0db;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.included {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 5rem;
  align-items: center;
  padding-top: 1rem;
}

.included ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.included li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(8,44,59,.22);
  font-size: 1.2rem;
  font-weight: 800;
}

.included li::before {
  content: "✓";
  color: #ff6048;
  margin-right: .8rem;
}

.course-map img {
  display: block;
  width: 100%;
  height: auto;
}

.festival-map {
  display: block;
  margin: 3rem auto 0;
  border: 12px solid white;
  box-shadow: 14px 14px 0 #ff6048;
}

.festival-map img {
  display: block;
  width: 100%;
  height: auto;
}

.map-hint {
  margin: 1.5rem 0 0;
  font-size: .85rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .course-map {
    min-height: 0;
  }

  .included {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
