.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15vw, 1fr));
  grid-auto-rows: 10px; /* Base row height */
  gap: 1em;
  padding: 1em;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  height: auto;
}

#course {
  padding: 10em 0;
}
#course a {
  color: #1E211E;
}
#course a:hover {
  color: #C2B398;
}
#course ._desc {
  font-size: max(18px, 2.8em);
  max-width: 31em;
  line-height: 1.15;
}
#course h3 {
  font-size: max(16px, 2.4em);
  background: rgba(112, 112, 112, 0.04);
  display: inline-block;
  padding: 0.41em 1.2em;
  border-radius: 2em;
  font-weight: 500;
}
#course ._year {
  padding: 6em 0;
}/*# sourceMappingURL=image_grid.css.map */