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

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

.entry2 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.entry-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.posts-mds:hover .entry-image img {
  transform: scale(1.05);
}

.entry-categories a {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.entry-title {
  flex-grow: 1;
}

.entry-content {
  margin-top: auto;
}