/* === Base for .glide and .glide- Mobile-Only === */
.glide,
.glide--mobile-only {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide *,
.glide--mobile-only * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
}

.glide__arrows,
.glide__bullets {
  user-select: none;
}

/* === BULLETS === */
.glide__bullets {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.glide__bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.glide__bullet:focus {
  outline: none;
}


/* === ARROWS === */
.glide__arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.glide__arrow {
  background: none;
  border: none;
  cursor: pointer;
}

/* === Responsive logic for .glide-Mobile-Only === */
@media (min-width: 979px) {
  .glide--mobile-only .glide__track {
    display: block;
  }

  .glide--mobile-only .glide__slides {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }

  .glide--mobile-only .glide__slide {
    flex: 1;
    width: auto;
  }

  .glide--mobile-only .glide__bullets,
  .glide--mobile-only .glide__arrows {
    display: none;
  }
}
