.epl-posts-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.epl-post-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5em;
  padding: 1.5em;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s;
}
.epl-post-item:hover {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.epl-post-thumb {
  width: 400px;
  height: 300px !important;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.epl-post-content {
  flex: 1;
}
.epl-post-title {
  margin: 0 0 0.5em 0;
  font-size: 1.2em;
  color: #222;
}
.epl-post-meta {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 0.7em;
}
.epl-post-excerpt {
  color: #444;
  font-size: 1em;
}
.epl-read-more {
  color: #fdcb00;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 700px) {
  .epl-post-item {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7em;
    padding: 1em;
  }
  .epl-post-thumb {
    width: 100%;
    height: 180px;
  }
}
