.latest-post-heading {
  margin-bottom: 50px;
}

.latest-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.latest-post-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.latest-post-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.latest-post-card:hover .latest-post-img {
  transform: scale(1.05);
}

.latest-post-content {
  padding: 15px 15px 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.latest-post-title {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left; /* Override heading-1 default center alignment */
  color: #ffffff;
}

.latest-post-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.latest-post-title a:hover {
  color: var(--color-1, #e65125);
}

.latest-post-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .latest-post-heading {
    margin-bottom: 40px;
  }
}
