/* Gallery Trio */

.dsa-gallery-trio {
  display: flex;
  width: 100%;
  height: 85vh!important;
  overflow: hidden;
  position: relative;
}

.dsa-gt-slide {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.dsa-gt-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dsa-gt-slide--empty {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
}

/* Arrows hidden on desktop */
.dsa-gt-arrow {
  display: none;
}

/* â”€â”€ Mobile: carousel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 768px) {

  .dsa-gallery-trio {
    height: 80vh !important;
    position: relative;
    overflow: hidden;
  }

  /* All slides stacked, only active visible */
  .dsa-gt-slide {
    position: absolute;
    inset: 0;
    flex: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .dsa-gt-slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Arrows */
  .dsa-gt-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 96%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 14px;
    cursor: pointer;
  }

  .dsa-gt-arrow--prev {
    left: 0;
  }

  .dsa-gt-arrow--next {
    right: 0;
  }

  .dsa-gt-arrow .dsa-arrow__icon {
    width: 28px;
    height: auto;
    display: block;
  }

  .dsa-gt-arrow .dsa-arrow__icon--prev {
    transform: rotate(180deg);
  }

  .dsa-gt-arrow:hover {
    opacity: 0.5;
  }
}
