
#post-single-4 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
}
#post-single-4 .row {
  display: flex;
  gap: 30px;
}
#post-single-4 .sidebar {
  flex: 1;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.9rem;
}
#post-single-4 .content-main {
  flex: 3;
}
@media (max-width: 768px) {
  #post-single-4 .row {
    flex-direction: column;
  }
}



#related-posts-3 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#related-posts-3 .masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
#related-posts-3 .masonry-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#related-posts-3 .masonry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#related-posts-3 .card-body {
  padding: 15px;
}



#text-block-15 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
}
#text-block-15 .container {
  max-width: 900px;
}
#text-block-15 .left-border-text-wrapper {
  position: relative;
  padding-left: 40px;
}
#text-block-15 .left-border-text-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--border-width, 5px);
  background-color: var(--border-color, #0dcaf0);
  border-radius: 3px;
}
#text-block-15 .section-title-optional {
  font-size: 1.1rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 10px;
}
#text-block-15 .text-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 30px;
}
#text-block-15 .text-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color, #555e68);
  opacity: 0.9;
  margin-bottom: 1.2rem;
}
#text-block-15 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #text-block-15 {
    padding: 60px 0;
  }
  #text-block-15 .left-border-text-wrapper {
    padding-left: 25px;
  }
  #text-block-15 .left-border-text-wrapper::before {
    width: calc(var(--border-width, 5px) * 0.8);
  }
  #text-block-15 .text-heading {
    font-size: 2rem;
  }
  #text-block-15 .text-paragraph {
    font-size: 1rem;
  }
}


