.wp-block-slide-reveal-content {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
  margin: 60px 0 0;
}
@media screen and (max-width: 1024px) {
  .wp-block-slide-reveal-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .wp-block-slide-reveal-content {
    grid-template-columns: 1fr;
  }
}
.wp-block-slide-reveal-content__block {
  background-color: #636466;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
}
.wp-block-slide-reveal-content__block:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 20px;
  background-color: white;
}
.wp-block-slide-reveal-content__block--toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 60px;
  height: 45px;
  background-color: #E41B23;
}
.wp-block-slide-reveal-content__block--toggle.is-expanded:before {
  transform: scale(1);
}
.wp-block-slide-reveal-content__block--toggle.is-expanded ~ .wp-block-slide-reveal-content__block--text {
  top: 0;
}
.wp-block-slide-reveal-content__block--toggle:before {
  content: url(../../images/icons/down-arrow.svg);
  display: block;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  filter: invert(1);
  transform: scale(-1);
}
.wp-block-slide-reveal-content__block--title {
  position: absolute;
  grid-row: 1/-1;
  grid-column: 1/-1;
  width: 100%;
  height: 100%;
  text-align: center;
}
.wp-block-slide-reveal-content__block--title img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: grayscale(1);
}
.wp-block-slide-reveal-content__block--title span {
  position: relative;
  display: block;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  color: white;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  align-content: center;
  background-color: rgba(99, 100, 102, 0.85);
  padding: 20px;
}
.wp-block-slide-reveal-content__block--text {
  position: relative;
  top: 100%;
  grid-row: 1/-1;
  grid-column: 1/-1;
  padding: 40px 40px 60px;
  width: 100%;
  height: 100%;
  color: white;
  background-color: #636466;
  transition: all 0.3s ease-in-out;
}
