

/* detail */
.blog-detail-banner {
  margin-top: 6.4rem;
  padding: 90px 0px;
  background-color: var(--primary-color);
  position: relative;
}
.blog-detail-banner h1 {
  color: #fff;
  text-align: center;
  padding: 0px 10%;
  line-height: 1.5;
}

.blog-detail .share-blog {
  position: fixed;
  right: 0;
  top: 42%;
}
.blog-detail .with-logo {
  display: flex;
  align-items: center;
  margin: 28px 0px;
}
.blog-detail .with-logo > img {
  margin-right: 28px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  padding: 14px;
  width: 214px;
  height: 84px;
  object-fit: contain;
  border-radius: 6px;
}
.blog-detail .share-blog ul li {
  list-style: none;
  padding: 8px;
  background: #fff;
  box-shadow: -6px 0px 12px rgba(0, 0, 0, 0.1);
  color: white;
  width: 46px;
  text-align: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}
.blog-detail .share-blog ul li img {
  width: 19px;
}
.blog-detail .posted-by {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.blog-detail .posted-by .profile {
  width: 46px;
  height: 46px;
  margin-right: 14px;
  object-fit: cover;
  border-radius: 100px;
}
.blog-detail .posted-by .name {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}
.blog-detail .posted-by .time {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}
.blog-detail .cta {
  border-radius: 24px;
}
.blog-detail .highlight-card {
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 6px 6px 0px rgba(5, 102, 36, 0.2);
  padding: 22px 18px;
  border: 2px solid var(--primary-color);
  max-width: 75%;
  margin: 22px auto 27px auto;
}
.blog-detail .highlight-card p {
  margin-bottom: 0;
  text-align: center;
}
.blog-detail .high-text {
  font-size: 28px;
  margin: 20px 0px 26px 0px;
  text-decoration: underline;
  font-style: italic;
}
.blog-detail h2 {
  font-size: 2.1rem;
  line-height: 1.55;
}
.blog-detail h3 {
  font-size: 1.6rem;
  line-height: 1.5;
}
.blog-detail p {
  color: #717171;
  line-height: 1.68;
}
.blog-detail ul li {
  color: #717171;
  list-style-type: disc;
  line-height: 1.68;
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.blog-detail ul li::marker {
  color: #717171;
  font-size: 1.2rem !important;
}
.blog-detail a {
  color: var(--primary-color);
  text-decoration: underline;
}
.blog-detail a:hover {
  color: var(--primary-color);
}
.blog-detail ol li::marker {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
}
.blog-detail ol {
  margin-left: 16px;
}
.blog-detail .small-points li {
  margin-bottom: 20px;
}
.blog-detail .small-points li::marker {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}
#randomBlogContainer a {
  text-decoration: none;
}
.blog-detail .blog-card {
  padding: 3rem 0px 30px 0px;
}
.blog-detail table {
  border-color: white;
}
.blog-detail table .thead {
  background-color: #dedede;
}
.blog-detail table .thead th {
  font-size: 15px;
  width: 16.666666%;
  vertical-align: middle;
  text-align: center;
  border: 1px solid rgb(198, 198, 198);
  border-bottom: none;
}
.blog-detail table td {
  font-size: 14px;
  color: #717171;
  border: 1px solid rgb(198, 198, 198);
}
.blog-detail table td.td2 {
  vertical-align: middle;
  font-size: 1.125rem;
}
.blog-detail table td ul {
  padding-inline-start: 19px;
}
.blog-detail table td li {
  font-size: 14px;
  margin-bottom: 0;
  color: #717171;
}
.blog-detail table .heading {
  font-size: 15px;
  border: 1px solid rgb(198, 198, 198);
}
.blog-detail table .heading.heading2 {
  font-size: 15px;
  vertical-align: middle;
  border: 1px solid rgb(198, 198, 198);
  padding-left: 20px;
}

@media (max-width: 768px) {
  .blog-detail h2 {
    font-size: 1.6rem;
    line-height: 36px;
  }
  .blog-detail ol li::marker {
    font-size: 1.25rem;
  }
  .blog-detail p {
    font-size: 16px;
  }
  .blog-detail ul li {
    font-size: 16px;
  }
  .blog-detail .share-blog ul li {
    width: 34px;
    padding: 4px;
  }
  .blog-detail .share-blog ul li img {
    width: 14px;
  }
  .blog-detail .with-logo {
    display: block;
  }
  .blog-detail .with-logo > img {
    margin-bottom: 18px;
  }
}
