
#post-single-7 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#post-single-7 .row {
  display: flex;
  gap: 30px;
}
#post-single-7 .image-column {
  flex: 1;
}
#post-single-7 .image-column img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
#post-single-7 .content-column {
  flex: 2;
}
#post-single-7 .content-column h1 {
  margin-bottom: 15px;
}
#post-single-7 .post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #post-single-7 .row {
    flex-direction: column;
  }
}



#related-posts-2 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#related-posts-2 .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#related-posts-2 .list-item img {
  width: 150px;
  height: 100%;
  object-fit: cover;
}
#related-posts-2 .content {
  padding: 15px;
  flex: 1;
}
@media (max-width: 576px) {
  #related-posts-2 .list-item {
    flex-direction: column;
  }
  #related-posts-2 .list-item img {
    width: 100%;
    height: auto;
  }
}


