/* -------------------------
   BLOG POST CONTENT MODULE
-------------------------- */
.blog-post-content-module {
  width: 100%;
  display: block;
  margin-bottom: 60px;
}

/* -------------------------
   BANNER
-------------------------- */
.blog-post-content-module .blog-banner {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
}

/* Optional overlay (enable if needed)
.blog-post-content-module .blog-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
}
*/

/* -------------------------
   CONTENT AREA
-------------------------- */
.blog-post-content-module .blog-body {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
}

/* Typography */
.blog-post-content-module .blog-body .blog-header {
	font-size: 36px;
  font-weight: normal;
  text-transform: uppercase;
  color: #5000FB;
}

.blog-post-content-module .blog-body .blog-heading h2 {
	font-size: 30px;
    font-weight: 400;
    color: #707070;
}

@media (max-width: 768px) {
.blog-post-content-module .blog-body .blog-header {
	font-size: 30px;
  }
  
  .blog-post-content-module .blog-body .blog-heading h2 {
	font-size: 24px;
  }
}
.blog-post-content-module .blog-body p {
  margin-bottom: 20px;
}

.blog-post-content-module .blog-body img {
  max-width: 100%;
  margin: 25px 0;
  border-radius: 8px;
}

.blog-post-content-module .blog-body ul,
.blog-post-content-module .blog-body ol {
  margin: 20px 0 20px 40px;
}

.blog-post-content-module .blog-body a {
  color: #5000FB;
  -webkit-transition: color 0.35s;
  -o-transition: color 0.35s;
  transition: color 0.35s;
  font-weight: bold;
}

.blog-post-content-module .blog-body a {
  padding-bottom: 35px;
}

.blog-post-content-module .blog-body blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  background: #f7f7f7;
  border-left: 4px solid #444;
  border-radius: 6px;
  font-style: italic;
}

/* -------------------------
   RESPONSIVE
-------------------------- */
@media (max-width: 768px) {
  .blog-post-content-module .blog-banner {
    height: 220px;
  }

  .blog-post-content-module .blog-body {
    padding: 0 15px;
  }
}




/* New styles */



.blog-module {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: inherit;
}

/* Heading */
.blog-heading h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}

/* Two Column Area */
.blog-top-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.col-left {.
/*     flex: 0 0 75%; */
}

.col-right {
    flex: 0 0 25%;
}

/* Video */
.blog-video {
    margin: 50px 0;
}

.video-wrapper iframe {
    border-radius: 8px;
}

/* Main Body */
.blog-body p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

/* Image Block */
.blog-image {
    margin: 40px 0;
}

.blog-image img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.small-text {
    font-size: 14px;
    color: #666;
}

/* Additional Content */
.blog-extra {
    margin: 40px 0;
}

/* Related Pages Section */
.related-pages {
    margin-top: 60px;
}

.related-pages h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.related-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.related-card:hover {
    background: #fafafa;
}

.related-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.related-card h4 {
    font-size: 18px;
    color: #333;
}
