.latest-posts ul {
    list-style-type: disc;
    padding-left: 20px;
}

.latest-posts li {
    margin-bottom: 8px;
}
.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 25px;
  margin: 40px 0;
  justify-content: center;
}

.post-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card img {
  width: 100%;
  height: 180px;
  display: block;
}

.post-content {
  padding: 15px;
}

.post-title {
  font-size: 1.5rem;
  margin: 0 0 10px;
  line-height: 1.3;
}

.post-title a {
  text-decoration: none;
  color: #222;
}

.post-title a:hover {
  color: #0073aa;
}

.post-excerpt {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  font-weight: bold;
  color: #0073aa;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.relatedblog{
    margin-top: 50px;
}
.post-card img {
    height: 200px;
}
.relatedblog.latest-post h2 {
    text-align: center;
}