
/* LEFT CONTENT */
.left-content {
  max-width: 380px;
}

.left-content h1 {
  font-weight: 700;
  letter-spacing: 1px;
}

.scroll-indicator {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 40px;
  margin-bottom: 40px;
  cursor: pointer;
  user-select: none;
}

/* IMAGE AREA */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 24px;
}

.image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.6s ease;
}

.image-wrapper img.active {
  opacity: 1;
  transform: scale(1);
}

.counter {
  position: absolute;
  bottom: -40px;
  right: 0;
  font-size: 14px;
  font-weight: 600;
}