.grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.grid .item {
  width: calc(100% / 3);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .grid .item {
    width: 100%;
  }
}
.grid .item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.grid .item a .thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.grid .item a .thumbnail:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.3, 0.5, 0.9), background-color 0.3s cubic-bezier(0.55, 0.3, 0.5, 0.9);
  transition: opacity 0.3s cubic-bezier(0.55, 0.3, 0.5, 0.9), background-color 0.3s cubic-bezier(0.55, 0.3, 0.5, 0.9);
  will-change: opacity, background-color;
}
.grid .item a .thumbnail picture {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .grid .item a .thumbnail picture {
    height: 300px;
  }
}
.grid .item a .thumbnail picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid .item a .content {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 300;
  text-align: center;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.4s;
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1024px) {
  .grid .item a .content {
    opacity: 1;
    height: auto;
    bottom: 0;
    top: unset;
    padding: 10px 0;
  }
}
.grid .item a .content:hover {
  opacity: 1;
}
.grid .item a .content .title {
  line-height: 1.1em;
}
@media screen and (max-width: 1024px) {
  .grid .item a .content .title {
    margin: 0;
    color: var(--blue);
  }
}
.grid .item a .content .description {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1em;
}
@media screen and (max-width: 1024px) {
  .grid .item a .content .description {
    color: var(--blue);
  }
}
.grid .item a .content .local {
  font-size: 1rem;
  width: 100%;
  line-height: 1em;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .grid .item a .content .local {
    color: var(--blue);
  }
}

.load {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}