.gallery {
  display: flex;
  width: 100%;
}

.gallery-col {
  display: flex;
  flex-direction: column;
}

.gallery-col--left {
  flex: 6;
  /* 60% Width */
  border-right: 1px solid var(--color-border);
}

.gallery-col--right {
  flex: 4;
  /* 40% Width */
}

.gallery-item {
  break-inside: avoid;
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* Force the last item in each column to stretch, aligning the final bottom borders! */
.gallery-item:last-child {
  flex-grow: 1;
}

.gallery-item__image-wrapper {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.gallery-item__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  margin-top: auto;
}

.gallery-item__year {
  color: #888;
}

@media (max-width: 768px) {
  .gallery-item__meta {
    display: none;
  }

  .gallery-item {
    padding: 0.5rem;
  }

  .gallery-item__image-wrapper img {
    width: 100% !important;
  }
}