.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;  
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}


.slider-controls {
  display: flex;
  margin: 1rem 0 3rem 0;
  align-items: center;
  
}

.swiper-pagination {
  position: relative;
  text-align: left;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
  top: -3.5px;
  left: -4px;
}

.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}

.swiper-arrows {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ph-arrow-left, .ph-arrow-right {
  font-size: 2rem;
}

.swiper-button-next, .swiper-button-prev {
  position: relative;
  display: grid;
  place-content: center;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  margin-top: 0;
}

:root {
  --swiper-theme-color: #222;
}

/* Home */

.home .slider-controls {
  display: none;
}

.home .swiper-slide img {
  object-fit: cover;
  max-height: 70svh;
}

@media (max-width: 1200px) {
  .home .swiper-slide img {
    object-fit: cover;
    max-height: 50svh;
  }
}

@media (max-width: 576px) {
  .home .swiper-slide img {
    object-fit: cover;
    max-height: 85svh;
    min-height: 50svh;
  }
}

.wp-block-column.is-vertically-aligned-top {
  width: auto;
}


