div.block-slideshow {
  margin-top: var(--wp--preset--spacing--2-xl);
}
div.block-slideshow .images-items {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  margin-bottom: 72px;
}
div.block-slideshow .images-items .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
div.block-slideshow .images-items .item.active {
  z-index: 3;
  opacity: 1;
}
div.block-slideshow .images-items .item figure {
  width: 100%;
  height: 100%;
}
div.block-slideshow .images-items .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
div.block-slideshow .content-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--wp--preset--spacing--4-xl);
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  div.block-slideshow .content-items {
    flex-direction: column;
    display: flex;
    gap: var(--wp--preset--spacing--xl);
  }
}
@media screen and (max-width: 768px) {
  div.block-slideshow .content-items .item {
    max-width: 100%;
    padding: var(--wp--preset--spacing--xl) 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
  }
  div.block-slideshow .content-items .item:nth-child(1) {
    border-top: none;
  }
}
div.block-slideshow .content-items .item.active h3, div.block-slideshow .content-items .item p {
  opacity: 1;
}
div.block-slideshow .content-items .item h3 {
  margin-bottom: var(--wp--preset--spacing--xs);
  margin-top: 0px;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  div.block-slideshow .content-items .item h3 {
    opacity: 1;
  }
}
div.block-slideshow .content-items .item p {
  margin: 0px;
  opacity: 0.7;
}