
/* ===============================
   NEWS & UPDATES SECTION
================================= */

.news-carousel-section {
  padding: 80px 5%;
  background: #F8F5F0;
  position: relative;
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===============================
   SECTION HEADER
================================= */

.n-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.header-content {
  flex: 1;
  min-width: 300px;
}

.n-section-header h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 700;
}

.n-section-header p {
  font-size: 1.2rem;
  color: #666666;
  max-width: 600px;
}

/* ===============================
   NAVIGATION ARROWS
================================= */

.news-navigation {
  display: flex;
  gap: 10px;
}

.news-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #DAC0A3;
  background: #FFFFFF;
  color: #000000;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.news-nav-btn:hover:not(:disabled) {
  background: #DAC0A3;
  color: #FFFFFF;
  transform: scale(1.1);
}

.news-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ===============================
   CAROUSEL WRAPPER
================================= */

.news-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.news-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================
   NEWS CARD
================================= */

.news-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 350px;
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  /* Equal height magic */
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ===============================
   IMAGE
================================= */

.news-image {
  position: relative;
  height: 280px; /* KEEP SAME AS REQUESTED */
  overflow: hidden;
  flex-shrink: 0;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

/* ===============================
   DATE BADGE
================================= */

.news-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #DAC0A3;
  color: #000000;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  min-width: 60px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.date-day {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.date-month {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===============================
   CONTENT
================================= */

.news-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-content h3 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

/* Meta info */
.news-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888888;
  flex-wrap: wrap;
  gap: 10px;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-meta i {
  color: #DAC0A3;
  font-size: 0.9rem;
}

/* ===============================
   BUTTON
================================= */

.news-btn {
  margin-top: auto; /* Push button to bottom */
  display: inline-block;
  padding: 10px 25px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.news-btn:hover {
  background: #DAC0A3;
  color: #000000;
  transform: translateY(-2px);
}

/* ===============================
   VIEW ALL BUTTON
================================= */

.view-all-news {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #DAC0A3;
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid #DAC0A3;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 192, 163, 0.3);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1200px) {
  .news-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
  }
}

@media (max-width: 992px) {
  .news-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 280px;
  }

  .news-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .news-carousel-section {
    padding: 60px 4%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .news-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .news-carousel-track {
    gap: 0;
  }

  .news-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-navigation {
    align-self: flex-end;
  }

  .news-image {
    height: 180px;
  }

  .news-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .news-carousel-section {
    padding: 50px 3%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .news-date {
    top: 15px;
    right: 15px;
    padding: 8px;
    min-width: 55px;
  }

  .date-day {
    font-size: 1.3rem;
  }

  .view-all-btn {
    width: 100%;
    text-align: center;
  }
}



