/**
 * IT Store — image slot / hero slider styles.
 */
.itstore-hero { padding: 24px 0 8px; }

.image-slot {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0b1220;
  box-shadow: 0 18px 40px rgba(11, 31, 51, 0.18);
  outline: none;
}

.image-slot__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.image-slot__slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 340px;
  height: clamp(340px, 42vw, 560px);
}

.image-slot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-slot__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 32, 0.85) 0%, rgba(6, 18, 32, 0.45) 45%, rgba(6, 18, 32, 0.05) 100%);
}

.image-slot__caption {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 560px;
  color: #fff;
  z-index: 2;
}

.image-slot__eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #2f6fed;
  margin-bottom: 12px;
}

.image-slot__title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 14px;
  color: #fff;
}

.image-slot__text {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #d6e2f1;
  margin: 0 0 22px;
}

.image-slot__cta { font-size: 15px; }

/* Navigation */
.image-slot__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #0b1220;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.image-slot__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.image-slot__nav--prev { left: 16px; }
.image-slot__nav--next { right: 16px; }

/* Dots */
.image-slot__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 3;
}
.image-slot__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, width 0.15s ease;
}
.image-slot__dot.is-active { background: #2f6fed; width: 26px; border-radius: 6px; }

@media (max-width: 767px) {
  .image-slot__caption { left: 5%; right: 5%; max-width: none; }
  .image-slot__overlay { background: linear-gradient(0deg, rgba(6, 18, 32, 0.9) 0%, rgba(6, 18, 32, 0.35) 100%); }
  .image-slot__nav { display: none; }
}
