.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.recent-post-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
  border: 1px solid #eee;
  padding: 15px;
  background: #fff;
  flex-wrap: wrap;
}
.recent-post-thumbnail {
  flex: 0 0 300px;
}
.recent-post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.recent-post-content {
  flex: 1;
}
.recent-post-title {
  font-size: 1.7rem;
  margin: 10px 0;
}
.recent-post-excerpt {
  font-size: 1.1rem;
  color: #444;
  margin: 0;
}
#load-more-posts {
  padding: 10px 15px;
  margin: 20px auto;
  display: block;
  background: #0066cc;
  color: white;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .recent-post-item {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
  .recent-post-thumbnail {
    width: 100%;
    margin: 0;
  }
  .recent-post-title {
    margin: 0 0 5px;
    font-size: 1.4rem;
  }
  .recent-post-excerpt {
    margin: 0;
    font-size: 1rem;
  }
}
