
.post-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05); 
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  transform: translateZ(0); 
}


.post-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: transparent; 
}


.post-thumbnail {
  width: 100%;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  /* height: 100% !important; */
  height: 250px !important;
  object-fit: cover;
  transition: scale 0.5s ease;
}

h1 {
  margin-bottom: 0;
  font-size: 24px;
  padding: 0 1rem;
  font-weight: bold;
}

.post-title {
  margin: 0;
  font-size: 18px;
}

a {
  text-decoration: none;
}

.widget-main-title {
  font-weight: bold;
}

.post-info {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box; 
}

.post-excerpt {
  margin-top: .5rem;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.empty-title {
  margin-top: 20px;
}