
#post-single-8 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
#post-single-8 .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
  z-index: -1;
}
#post-single-8 .content-overlay {
  position: relative;
  max-width: 800px;
  margin: 100px auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
#post-single-8 .content-overlay h1 {
  margin-bottom: 20px;
}
#post-single-8 .post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}



#related-posts-6 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#related-posts-6 .overlay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#related-posts-6 .card {
  position: relative;
  flex: 1 1 calc(33.333% - 20px);
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#related-posts-6 .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#related-posts-6 .card:hover img {
  transform: scale(1.05);
}
#related-posts-6 .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#related-posts-6 .card:hover .overlay {
  opacity: 1;
}
@media (max-width: 992px) {
  #related-posts-6 .card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  #related-posts-6 .card {
    flex: 1 1 100%;
  }
}



#call-to-action-11 {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
}
#call-to-action-11 .left-col,
#call-to-action-11 .right-col {
  flex: 1 1 50%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: left;
}
#call-to-action-11 .left-col {
  background-color: #f8f9fa;
  color: #333;
}
#call-to-action-11 .left-col h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-11 .left-col p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
#call-to-action-11 .left-col .btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease-in-out;
}
#call-to-action-11 .left-col .btn:hover {
  background-color: #0056b3;
  color: #fff;
}
#call-to-action-11 .right-col {
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  #call-to-action-11 {
    flex-direction: column;
  }
  #call-to-action-11 .left-col,
  #call-to-action-11 .right-col {
    flex: 1 1 100%;
    min-height: auto;
  }
  #call-to-action-11 .left-col {
    text-align: center;
  }
}


