.eafe-post-grid {
  display: grid;
  gap: 20px; /* Adjust the gap between items */
  width: 100%;
}

.eafe-post-grid-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

.eafe-post-grid-item.zoom .eafe-post-thumbnail img {
  transition: transform 0.3s ease;
}

.eafe-post-grid-item.zoom:hover .eafe-post-thumbnail img {
  transform: scale(1.1); /* Zoom effect on hover */
}

.eafe-post-grid-item.fade .eafe-post-thumbnail img {
  opacity: 1; /* Default opacity */
  transition: opacity 0.3s ease; /* Smooth transition */
}

.eafe-post-grid-item.fade:hover .eafe-post-thumbnail img {
  opacity: 0.7; /* Fade effect on hover */
}

.eafe-post-grid-item.shadow:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

.eafe-post-thumbnail img {
  width: 100%;
  display: block;
}

.eafe-post-title {
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.eafe-post-title a {
  text-decoration: none;
  color: #333;
}

.eafe-post-title a:hover {
  color: #0073e6;
}
