.blog-content-page {
  width: calc(100% - 12rem);
  margin: 0 auto;
  padding: 4rem 6rem;
}

.page-bread-crumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
  width: 100%;
  background: #F09000;
  padding: .5rem 1rem;
}

.page-bread-crumb a {
  text-decoration: none;
  color: #474747;
}

.page-bread-crumb a:after {
  content: '>';
  margin-left: 10px;
  color: #474747;
  font-size: 16px;
  font-weight: 600;
  font-family: Satoshi-Regular;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-bread-crumb a:last-child:after {
  content: '';
  margin-left: 0;
}

.blog-details-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.blog-details-top .blog-details-title h1 {
  font-size: 1.85rem;
  font-weight: 700;
  max-width: 75%;
  color: #000;
  font-family: Satoshi-Regular;
  line-height: 1.5;
  margin-bottom: 0;
}

.blog-details-top .blog-details-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog-details-top .blog-details-image .blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-details-top .blog-details-image .blog-meta .blog-meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  font-size: .875rem;
}

.blog-details-top .blog-details-image .blog-meta .blog-meta-item .blog-meta-item-text {
  color: #474747;
  font-family: Satoshi-Regular;
}

.blog-details-top .blog-details-image .blog-meta .blog-meta-separator {
  width: 1px;
  height: 1rem;
  background: #000;
  margin: 0 1rem;
  border-radius: 1rem;
}

.blog-details-top .blog-details-image .blog-details-image-container {
  max-height: 30rem;
  width: auto;
  overflow: hidden;
  border-radius: 1rem;
}

.blog-details-top .blog-details-image .blog-details-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}

.blog-footer .read-time {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  font-family: Satoshi-Regular;
}

.blog-details-separator-line {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin: 2rem 0;
}

.blog-details-content {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}

.blog-details-content .left-content {
  width: calc(30% - 2rem);
  margin: 0 auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.blog-details-content .left-content .table-of-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .5rem;
}

.blog-details-content .left-content .table-of-contents h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  font-family: Satoshi-Regular;
  line-height: 1.2;
  margin-bottom: 0;
}

.blog-details-content .left-content .table-of-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details-content .left-content .table-of-contents ul li a {
  text-decoration: none;
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: Satoshi-Regular;
  line-height: 1.2;
}

.blog-details-content .left-content .table-of-contents ul li a:hover {
  color: #474747;
}

.blog-details-content .left-content .call-to-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .5rem;
}

.blog-details-content .left-content .call-to-action h2 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  font-family: Satoshi-Regular;
  line-height: 1.2;
}

.blog-details-content .left-content .call-to-action p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  font-family: Satoshi-Regular;
  line-height: 1.2;
}

.blog-details-content .left-content .call-to-action form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.blog-details-content .left-content .call-to-action input {
  width: 100%;
  height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #474747;
  font-family: Satoshi-Regular;
  line-height: 1.2;
}

.blog-details-content .left-content .call-to-action button {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  background: #F09000;
  border: 1px solid #F09000;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  font-family: Satoshi-Regular;
  line-height: 1.2;
}

.right-content {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.right-content .blog-details-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.right-content .blog-details-content-item h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  font-family: Satoshi-Regular;
  line-height: 1.2;
  margin-bottom: 0;
}

.right-content .blog-details-content-item p {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  font-family: Satoshi-Regular;
  line-height: 1.2;
  margin: 0;
}

.right-content .blog-details-content-item img {
  width: 60%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

.related-blogs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.related-blogs .related-blogs-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  font-family: Satoshi-Regular;
  line-height: 1.2;
}

.related-blogs .related-blogs-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.related-blogs .related-blogs-content .related-blogs-item {
  width: calc(33.33% - 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: .5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
          box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-image {
  width: 100%;
  height: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-image .related-blogs-item-tags {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-image .related-blogs-item-tags .tag {
  background: #F09000;
  opacity: 0.8;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.5rem;
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-content .date {
  font-size: 0.875rem;
  font-weight: 400;
  color: #474747;
  font-family: Satoshi-Regular;
  line-height: 1.2;
  margin-bottom: 0;
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-content .title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-content .description {
  font-size: 0.875rem;
  font-weight: 400;
  color: #474747;
  font-family: Satoshi-Regular;
  line-height: 1.2;
  margin: 0;
}

.related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-content .read-more-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #F09000;
  font-family: Satoshi-Regular;
  line-height: 1.2;
  margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
/* Large Tablets */
@media (max-width: 1024px) {
  .blog-content-page {
    width: calc(100% - 4rem);
    padding: 3rem 2rem;
  }
  .blog-details-top .blog-details-title h1 {
    max-width: 100%;
    font-size: 2rem;
  }
  .blog-details-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-details-content .left-content,
  .blog-details-content .right-content {
    width: 100%;
  }
  .blog-details-content .left-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .blog-details-content .right-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .right-content .blog-details-content-item img {
    width: 100%;
  }
  .related-blogs .related-blogs-content .related-blogs-item {
    width: calc(50% - .75rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .blog-content-page {
    width: calc(100% - 2rem);
    padding: 2rem 1rem;
  }
  .page-bread-crumb {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: .5rem;
    padding: .75rem;
  }
  .page-bread-crumb a {
    font-size: .85rem;
  }
  .page-bread-crumb a:after {
    margin-left: .5rem;
  }
  .blog-details-top .blog-details-title h1 {
    font-size: 1.6rem;
    line-height: 1.35;
    max-width: 100%;
  }
  .blog-details-top .blog-details-image .blog-meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: .75rem;
  }
  .blog-details-top .blog-details-image .blog-meta .blog-meta-separator {
    display: none;
  }
  .blog-details-top .blog-details-image .blog-meta .blog-meta-item {
    font-size: .8rem;
  }
  .blog-details-top .blog-details-image .blog-details-image-container {
    max-height: 220px;
  }
  .blog-details-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  .blog-details-content .left-content,
  .blog-details-content .right-content {
    width: 100%;
  }
  .blog-details-content .left-content {
    padding: 1.25rem;
  }
  .right-content .blog-details-content-item h2 {
    font-size: 1.3rem;
  }
  .right-content .blog-details-content-item p {
    font-size: .95rem;
    line-height: 1.7;
  }
  .right-content .blog-details-content-item img {
    width: 100%;
  }
  .call-to-action input,
  .call-to-action button {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .related-blogs {
    margin-top: 3rem;
  }
  .related-blogs .related-blogs-title h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  .related-blogs .related-blogs-content {
    gap: 1.5rem;
  }
  .related-blogs .related-blogs-content .related-blogs-item {
    width: 100%;
    padding: .75rem;
  }
  .related-blogs .related-blogs-content .related-blogs-item .related-blogs-item-image {
    height: 220px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .blog-content-page {
    width: calc(100% - 1.5rem);
    padding: 1.5rem .75rem;
  }
  .blog-details-top .blog-details-title h1 {
    font-size: 1.35rem;
  }
  .blog-details-image .blog-details-image-container {
    max-height: 180px;
  }
  .left-content {
    padding: 1rem !important;
  }
  .table-of-contents h2 {
    font-size: 1.1rem;
  }
  .table-of-contents ul li a {
    font-size: .85rem;
  }
  .right-content .blog-details-content-item h2 {
    font-size: 1.15rem;
  }
  .right-content .blog-details-content-item p {
    font-size: .9rem;
  }
  .related-blogs .related-blogs-item .related-blogs-item-image {
    height: 180px;
  }
  .related-blogs .related-blogs-item .related-blogs-item-content .title {
    font-size: 1rem;
  }
  .related-blogs .related-blogs-item .related-blogs-item-content .description {
    font-size: .85rem;
  }
}
/*# sourceMappingURL=blog-details.css.map */