.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;
}

.post-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border: none;
}

.post-thumbnail {
  width: 100%;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  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;
}

.post-title a {
  color: black !important;
  text-decoration: none;
}

.widget-main-title {
  font-weight: bold;
}

.post-info {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: flex-start;
}

.post-excerpt {
  margin-top: 0.5rem;
  text-align: left;
  font-size: 14px;
}

.empty-title {
  margin-top: 20px;
}
