/* ================ COLOUR SHORTCUT ================= */

/* .wrapper-gallery {
  background-color: hsl(0, 1%, 35%);
}

.gallery-title-section {
  background-color: hsl(0, 10%, 29%);
}

.gallery-link-section {
  background-color: hsl(0, 16%, 18%);
}

.gallery-tile-section {
  background-color: hsl(0, 5%, 21%);
} */

/* ================ COLOUR SHORTCUT ================= */

.wrapper-gallery {
  /* background-color: hsl(0, 1%, 35%); */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1em;
}

.gallery-title-section {
  /* background-color: hsl(0, 10%, 29%); */
  grid-column: 1/2;
}

.gallery-link-section {
  /* background-color: hsl(0, 16%, 18%); */
  grid-column: 2/3;
  text-align: right;
}

.gallery-thumbnails-section {
  /* background-color: hsl(0, 5%, 21%); */
  grid-column: 1/3;
  grid-row: auto;
  height: fit-content;
  padding-top: 1rem;
}
