/* Carousel.css */
.elx-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 16px;
}
.elx-carousel-track {
  display: flex;
  cursor: grab;
  touch-action: pan-y;
}
.elx-carousel-track.dragging { cursor: grabbing; }

.elx-carousel-item {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  user-select: none;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.elx-carousel-item.round { border-radius: 50%; align-items: center; justify-content: center; text-align: center; }

.elx-carousel-item-header { display: flex; align-items: center; justify-content: space-between; }
.elx-carousel-index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--turquoise);
  letter-spacing: .08em;
}
.elx-carousel-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--turquoise);
}
.elx-carousel-item-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.elx-carousel-item-desc {
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 8px 0 0;
}

.elx-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}
.elx-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--line-2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.elx-carousel-dot.active { width: 26px; background: var(--turquoise); }

.elx-carousel-nav { display: flex; gap: 10px; }
.elx-carousel-arrow {
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--white);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, opacity .2s ease;
}
.elx-carousel-arrow:hover:not(:disabled) { border-color: var(--ink); transform: translateY(-2px); }
.elx-carousel-arrow:disabled { opacity: .35; cursor: not-allowed; }
