.cpd-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 2rem 0;
}

.cpd-post {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.cpd-post img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  margin-bottom: 12px;
  object-fit: cover;
}

.cpd-post h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color:#111;
  font-weight: bold;
  line-height: 1.6;
}

.cpd-post h2 a {
  text-decoration: none;
  color:#111;
}

.cpd-post h2:hover {
  color:#05df72;
}
.cpd-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.cpd-excerpt {
  font-size:1.1rem;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 1.1rem;
}

.cpd-button {
  display: inline-block;
  color: #0066cc;
  background-color: inherit;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.1rem;
  text-decoration: underline;
  padding-bottom: 10px;
 
}

@media screen and (max-width: 768px) {
  .cpd-post img{
    height: 300px;
  }
  .cpd-post h2{
    font-size: 1.5rem;
  }
}