/* ==========================================================================
   OUR WORK — horizontal poster slider
   ========================================================================== */

.vw-our-work {
  width: 100%;
  background: #fff;
  padding: 20px 20px 80px;
  overflow: hidden;
}

/* ---------- Heading ---------- */

.vw-work-heading-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.vw-work-badge {
  display: inline-block;
  background: #E8DDCF;
  color: #8B5E2B;
  padding: 10px 26px;
  border-radius: 40px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

.vw-work-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f1e35;
  line-height: 1.2;
  margin-bottom: 10px;
}

.vw-work-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* ---------- Slider ---------- */

.vw-work-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.vw-work-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
}

.vw-work-slider::-webkit-scrollbar {
  display: none;
}

/* ---------- Poster Card ---------- */

.vw-work-card {
  flex: 0 0 calc(25% - 18px);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  background: #f5f5f5;
}

.vw-work-card:hover {
  transform: translateY(-6px);
}

.vw-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Arrows ---------- */

.vw-work-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
}

.vw-work-arrow-left {
  left: 0;
}

.vw-work-arrow-right {
  right: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .vw-work-title {
    font-size: 34px;
  }

  .vw-work-card {
    flex: 0 0 calc(33.33% - 16px);
  }
}

@media (max-width: 768px) {
  .vw-work-title {
    font-size: 28px;
  }

  .vw-work-desc {
    font-size: 15px;
  }

  .vw-work-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .vw-work-title {
    font-size: 24px;
  }

  .vw-work-desc {
    font-size: 14px;
  }

  .vw-work-card {
    flex: 0 0 80%;
  }
}
