.gallery-area {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.gallery-area .main-image {
  grid-row: span 2;
  margin-bottom: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  border-radius: 32px;
}
.gallery-area .grid-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  height: 100%;
}
.gallery-area .grid-image .square-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  border-radius: 32px;
}
.gallery-area .see-all-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  font-size: 24px;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  border-radius: 32px;
}
.gallery-area .see-all-image label {
  font-weight: 700;
  font-size: 3.6rem;
}

@media (max-width: 769px) {
  .gallery-area {
    grid-template-columns: 1fr 2fr;
    gap: 12px;
  }
}
@media (max-width: 769px) {
  .gallery-area .grid-image {
    gap: 12px;
  }
}
@media (max-width: 769px) {
  .gallery-area .see-all-image label {
    font-size: 2.7rem;
  }
}

/*# sourceMappingURL=gallery.css-yoIewfr.map */
