.news-carousel-section h1 {
  font-weight: 800;
  font-size: 2.8rem;
  text-align: center;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #2e7d32, #c0a040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.news-carousel-section {
  padding: 40px 20px 80px;
  background: var(--news-bg, #fff);
  font-family: 'Kanit', sans-serif;
  color: var(--news-color, #2e7d32);
  transition: background 0.3s ease, color 0.3s ease;
}
body.dark-mode .news-carousel-section {
  --news-bg: #0d1b0d;
  --news-color: #c0a040;
}

.news-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
}

.news-carousel-slider {
  width: 840px;
  height: 500px;
  perspective: 1400px;
  margin: 30px auto 60px;
  user-select: none;
}

.news-carousel-slides {
  width: 520px;
  height: 500px;
  position: relative;
  top: 20px;
  left: 160px;
  transform-style: preserve-3d;
  transition: transform 0.9s ease;
  cursor: grab;
}

.news-carousel-slide {
  position: absolute;
  width: 460px;
  height: 460px;
  top: 18px;
  left: 18px;
  background-size: cover;
  background-position: center;
  border-radius: 0 !important;
  box-shadow: 0 15px 38px rgba(46, 125, 50, 0.12);
  opacity: 0.65;
  transform-origin: center center;
  cursor: pointer;
  transition: all 0.4s ease;
  user-select: none;
  z-index: 1;
  filter: grayscale(20%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: normal;
}

.news-carousel-slide .news-carousel-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #2e7d32;
  text-shadow: 0 0 5px rgba(0,0,0,0.6);
}

.news-carousel-slide .news-carousel-info p {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  color: #c0a040;
  text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.news-carousel-slide.active {
  width: 520px;
  height: 520px;
  top: 15px;
  left: 15px;
  opacity: 1;
  box-shadow: 0 25px 60px rgba(46, 125, 50, 0.25);
  z-index: 4;
  filter: none;
  border-radius: 0 !important;
}

.news-carousel-slide.left {
  transform: translateX(-270px) scale(0.95);
  opacity: 0.75;
  z-index: 3;
  filter: grayscale(45%);
  border-radius: 0 !important;
}

.news-carousel-slide.right {
  transform: translateX(270px) scale(0.95);
  opacity: 0.75;
  z-index: 3;
  filter: grayscale(45%);
  border-radius: 0 !important;
}

/* Pagination Dots */
.news-carousel-dots {
  margin-top: 24px;
  text-align: center;
}

.news-carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #2e7d32;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 5px #2e7d32;
}

.news-carousel-dot.active {
  opacity: 1;
  box-shadow: 0 0 15px #c0a040;
}

/* Carousel Button */
.news-carousel-btn-more {
  background: #2e7d32;
  border: none;
  color: white;
  padding: 12px 38px;
  font-size: 16px;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
  display: block;
  margin: 25px auto 60px;
  font-weight: 600;
  user-select: none;
}

.news-carousel-btn-more:hover {
  background: #c0a040;
  box-shadow: 0 0 25px rgba(192, 160, 64, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .news-carousel-slider {
    width: 100%;
    height: 360px;
  }

  .news-carousel-slides {
    width: 320px;
    height: 360px;
    left: calc(50% - 160px);
    top: 12px;
  }

  .news-carousel-slide {
    width: 280px;
    height: 280px;
    top: 10px;
    left: 10px;
    border-radius: 0 !important;
  }

  .news-carousel-slide.active {
    width: 320px;
    height: 320px;
    top: 8px;
    left: 8px;
  }

  .news-carousel-slide.left {
    transform: translateX(-160px) scale(0.85);
  }

  .news-carousel-slide.right {
    transform: translateX(160px) scale(0.85);
  }
}

@media (max-width: 480px) {
  .news-carousel-slider {
    height: 280px;
  }

  .news-carousel-slides {
    width: 260px;
    height: 280px;
    left: calc(50% - 130px);
    top: 8px;
  }

  .news-carousel-slide {
    width: 240px;
    height: 240px;
    top: 6px;
    left: 6px;
    border-radius: 0 !important;
  }

  .news-carousel-slide.active {
    width: 260px;
    height: 260px;
    top: 5px;
    left: 5px;
  }

  .news-carousel-slide.left {
    transform: translateX(-130px) scale(0.8);
  }

  .news-carousel-slide.right {
    transform: translateX(130px) scale(0.8);
  }
}
/* Dark Mode */
body.dark-mode {
  background-color: #121212; /* เทา-ดำเข้ม (ไม่ดำสนิท) */
  color: #c0a040;
}

body.dark-mode .news-carousel-section {
  --news-bg: #1a1a1a; /* พื้นหลัง section เข้มแต่นุ่มตา */
  --news-color: #c0a040;
}

body.dark-mode .news-carousel-slide {
  background-color: rgba(26, 26, 26, 0.95); /* ดำอมเทาโปร่งใส */
  box-shadow: 0 15px 38px rgba(192, 160, 64, 0.25);
  color: #c0a040;
  filter: grayscale(10%);
  border-radius: 0 !important;
}

body.dark-mode .news-carousel-slide.active {
  box-shadow: 0 30px 60px rgba(192, 160, 64, 0.45);
  filter: none;
  border-radius: 0 !important;
}

body.dark-mode .news-carousel-slide .news-carousel-info h3 {
  color: #c0a040;
  text-shadow: 0 0 5px rgba(0,0,0,0.8);
}

body.dark-mode .news-carousel-slide .news-carousel-info p {
  color: #c0a040;
  text-shadow: 0 0 3px rgba(0,0,0,0.7);
}

body.dark-mode .news-carousel-dot {
  background: #2e7d32;
  box-shadow: none;
}

body.dark-mode .news-carousel-dot.active {
  background: #c0a040;
  box-shadow: 0 0 10px #c0a040cc;
}

body.dark-mode .news-carousel-btn-more {
  background: #2e7d32;
  color: #fff;
  border-radius: 0 !important;
}

body.dark-mode .news-carousel-btn-more:hover {
  background: #c0a040;
  box-shadow: 0 0 25px rgba(192, 160, 64, 0.5);
}
