/* Card Image fixed height & object-fit */
.event-img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* Title truncation */
.newsEvents-body .card-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

/* Description truncation */
.newsEvents-body .card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1rem;
}

/* Date styling */
.date {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #888;
}

/* Card hover effect */
.news-card:hover {
  box-shadow: 0 12px 24px rgba(84, 40, 213, 0.3);
  transform: translateY(-6px);
  transition: all 0.3s ease;
}

/* No news message */
.no-news {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* Show more button container */
.text-center.mt-3 a.btn {
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.text-center.mt-3 a.btn:hover {
  background-color: #5428D5;
  color: #fff;
  text-decoration: none;
}
