.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.news-title {
  font-weight: 600;
}

.news-intro {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.news-btn {
  background-color: #f9a01b;
  border: none;
  color: #fff;
  transition: 0.3s ease;
  padding: 6px 18px;
  border-radius: 4px;
  font-weight: 500;
}

.news-btn:hover,
.news-btn:focus {
  background-color: #e78f12;
  color: #fff;
}

.news-poster {
  width: 100%;
  height: auto;
  max-height: 850px;
  object-fit: cover;
  border-radius: 10px;
}

.btn-primary {
  background-color: #f9a01b;
  border: none;
  font-weight: 500;
  padding: 8px 24px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #e78f12;
}

.section-Newstitle {
  font-size: 2.3rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: #f9a01b;
}

.section-Newstitle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 300px;
  height: 4px;
  background-color: #f9a01b;
  border-radius: 2px;
}