/* ===== Banner Section ===== */
.banner-section {
  padding: 20px 0 0;
  background: #f8fafc;
}

.banner-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.banner-slider {
  overflow: hidden;
}

.banner-track {
  display: flex;
  gap: 20px;
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}

.banner-slide {
  flex: 0 0 calc(50% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 613 / 182;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  background: #ffffff;
  border: 1px solid #e8edf3;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.07);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.banner-slide:hover {
  border-color: #d5dee9;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.12);
}

.banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.05) contrast(1.08) saturate(1.15);
  transition: filter 0.35s ease;
}

.banner-slide:hover img {
  filter: brightness(1.1) contrast(1.1) saturate(1.22);
}

/* ===== Responsive ===== */
@media (max-width: 1292px) {
  .banner-container {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    padding-top: 16px;
  }

  .banner-track {
    gap: 14px;
  }

  .banner-slide {
    flex: 0 0 100%;
    border-radius: 6px;
  }
}
