/* CONTAINER */
.showcase-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 10%;
}

/* TRACK */
.showcase-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

/* SLIDES */
.showcase-slide {
  flex: 0 0 80% !important;
  height: 360px;
  border-radius: 22px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  padding: 60px;
  box-sizing: border-box;
}

/* CONTENT */
.showcase-content {
  max-width: 45%;
  color: #fff;
}

/* BUTTON */
.showcase-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: #ff8a00;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* NAV */
.showcase-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 28px;
  border: none;
  cursor: pointer;
}

.showcase-slider .prev { left: 10px; }
.showcase-slider .next { right: 10px; }

/* MOBILE */
@media (max-width: 768px) {
  .showcase-slider {
    padding: 0;
  }

  .showcase-slide {
    flex: 0 0 100%;
    height: auto;
    padding: 30px;
  }

  .showcase-content {
    max-width: 100%;
  }
}

