/* Styling tambahan untuk card berita terkini */
.card-news-item {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.card-news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-news-item .entry2 {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-news-item .entry-categories {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.card-news-item .entry-content-wrapper {
  background: white;
}

.card-news-item .entry-title a {
  color: #2c3e50;
  transition: color 0.3s ease;
}

.card-news-item:hover .entry-title a {
  color: #3498db;
}

.card-news-item .entry-meta ul {
  margin-bottom: 0;
}

.card-news-item .entry-meta li {
  flex: 1;
  text-align: center;
  padding: 0;
}

.card-news-item .entry-meta li a {
  transition: color 0.3s ease;
}

.card-news-item .entry-meta li a:hover {
  color: #3498db !important;
}