.ebpv-wrapper {
  width: 100%;
}

.external-posts {
  width: 100%;
}

.custom-post {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  align-items: flex-start;
}

.custom-post img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.custom-post-content {
  flex: 1;
}

.custom-post h3 {
  margin: 0;
  font-size: 20px;
  color: #5e2776;
}

.custom-post h3 a {
  color: #5e2776;
  text-decoration: none;
}

.custom-post h3 a:hover {
  text-decoration: underline;
}

.custom-post p {
  font-size: 16px;
  color: #444;
}

.loading-posts {
  text-align: center;
  color: #999;
  margin: 20px 0;
}

.load-more-button {
  display: block;
  margin: 0 auto 30px;
  padding: 8px 20px;
  font-size: 14px;
  background-color: #782871;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.load-more-button:hover {
  background-color: #5e1e58;
}

.load-more-button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .custom-post {
    flex-direction: column;
  }

  .custom-post img {
    width: 100%;
  }
}
