@import url("GridCarousel.css");

.album--cell {
  position: relative;
  width: 100%;
  height: 100%;
}
.gc--griditem {
  display: flex;
  flex-direction: column;
  padding: 5px;
  cursor: unset;
  max-width: 390px;
}
.gc--griditem a {
  text-decoration: none;
  font-size: unset;
  color: unset;
  width: 100%;
  height: 100%;
  padding-bottom: 5px;
}
.gc--grid {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1200px) {
  .gc--grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .gc--grid {
    grid-template-columns: 1fr;
  }
}
.album--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album--overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00000066;
  opacity: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: opacity 0.2s ease-out;
}

.gc--griditem a:hover .album--overlay {
  opacity: 1;
}

.events--content {
  position: relative;
  max-height: 260px;
  overflow: hidden;
}

.events--img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.2s ease-out;
}

.events--overlay {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

.events--highlight {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.events--content:hover .events--img {
  transform: scale(1.1);
}

.events--txt {
  font-size: 16pt;
  color: #3e3a39;
  font-weight: bold;
}
