
  



  /* Typography */

.blog-post-container{
    h2{
        margin-top: 30px;
         margin-bottom: 15px;
  font-weight: 600;
  color: #222; 
  text-transform: capitalize;
    }
      h3{
         margin-bottom: 15px;
  font-weight: 600;
  color: #222; 
    }
      h4{
         margin-bottom: 15px;
  font-weight: 600;
  color: #222; 
    }
      h5{
         margin-bottom: 15px;
  font-weight: 600;
  color: #222; 
    }
      h6{
         margin-bottom: 15px;
  font-weight: 600;
  color: #222; 
    }
}

.blog-post-container{
    p{
            color: #333;
    margin-bottom: 15px;
    line-height: 30px !important;
     font-family: inherit !important;
    }
}



.blog-post-container {
h1{
    font-size: 32px;
  color: #720000;
  margin-block: 20px;
}
}


.blog-post-container {
 ul{
     margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
 }
 ol{
     margin-left: 20px;
  margin-bottom: 15px;
  list-style:decimal;
 }
}

.blog-post-container  {
  li{
    margin-bottom: 8px;
  }
}

.blog-post-container  {
    a{
          text-decoration: none;
  color: #007BFF;
    }
}
.blog-post-container {
  a:hover{
    text-decoration: underline;
  }
}

.blog-post-container{
    h2{
        font-size: 26px;
        text-transform: capitalize !important;
    }
    h3{
        font-size: 22px;
    }
    h4{
        font-size: 18px;
    }
    h5{
        font-size: 16px;
    }
    h6{
        font-size: 14px;
    }
}


/* General Elements */
img.blog-post-featured-image,
img.blog-post-product-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}




/* Layout */
.blog-post-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding: 20px;
}
.container{
    align-items: start !important;
}

.blog-post-main-content {
  flex: 1 1 60%;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #d3e0ea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.blog-post-date {
  font-size: 14px;
  color: #777;
  margin-block: 20px;
  padding-inline: 10px;
}

.blog-post-sidebar {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-section {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #d3e0ea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.blog-post-sidebar-heading {
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.blog-post-sidebar-list {
  list-style: disc;
  padding-left: 20px;
}

.blog-post-product-card {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.blog-post-product-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.blog-post-product-link {
  font-weight: bold;
  font-size: 14px;
  color: #222;
}

/* FAQ Section */
.blog-post-faq-section {
  margin-top: 40px;
}

.blog-post-faq-title {
  font-size: 24px;
  color: #444;
  margin-bottom: 20px;
}

.blog-post-faq {
  margin-bottom: 10px;
  border: 1px solid #d3e0ea;
  border-radius: 8px;
  background-color: #f9fcff;
  overflow: hidden;
}

.blog-post-faq summary.blog-post-faq-question {
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  background: #e9f4fb;
  transition: background 0.3s;
}

.blog-post-faq summary.blog-post-faq-question:hover {
  background: #d3eafc;
}

.blog-post-faq-answer {
  padding: 0 15px 15px 15px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-post-container {
    flex-direction: column;
  }

  .blog-post-main-content,
  .blog-post-sidebar {
    flex: 1 1 100%;
  }
}
