.gallery-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .gallery-section {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery-section .gallery-section__item {
  box-shadow: 0 4px 12px 0 #00000029;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  transition: all 0.5s;
}
.gallery-section .gallery-section__item:hover {
  transition: all 0.5s;
  box-shadow: 0 4px 12px 0 #0000004f;
}
.gallery-section .gallery-section__item .gallery-section-text {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
  justify-content: space-between;
}
.gallery-section .gallery-section__item .gallery-date {
  color: #0000004f;
}
/*# sourceMappingURL=style.css.map */