.single-post .type-post .post-thumbnail {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 14px;
}

.single-post .type-post .post-thumbnail img {
  width: 100%;
  height: 382px;
  object-fit: cover;
  display: block;
}

.single-post .type-post .post-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}

.single-post .type-post .entry-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: #2B2B2B;
  margin-top: 0;
  margin-bottom: 12px;
}

.single-post .type-post .entry-meta {
  font-size: 14px;
  color: #1D1D1D;
  line-height: 20px;
  margin-bottom: 18px;
}

.single-post .type-post .main-content {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  margin-bottom: 24px;
}

.single-post .type-post .post-content {
  padding-right: 24px;
  border-right: 1px solid #E6E5E5;
}

.single-post .type-post .entry-content {
  margin-top: 0;
  color: #475569;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 18px;
}

.single-post .type-post .entry-content .wp-block-image img {
  border-radius: 16px;
}

.single-post .share-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.single-post .share-buttons .text {
  color: #000;
  font-size: 10px;
}

.single-post .share-buttons .button {
  background-color: #D3D3D333;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.single-post .share-buttons .button>img {
  width: 16px;
  height: 16px;
  margin-bottom: 0;
  border-radius: 0;
  aspect-ratio: unset;
  object-fit: unset;
}

.single-post .post-sidebar {
  padding-left: 16px;
}

.single-post .post-sidebar .related-posts-div,
.single-post .post-sidebar .latest-posts-div {
  padding: 18px 16px;
  border-radius: 6px;
  background-color: #fafafa;
  margin-bottom: 24px;
}

.single-post .post-sidebar h4 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 22px;
  line-height: 30px;
  display: inline-block;
}

.single-post .post-sidebar h4:after {
  content: "";
  display: block;
  border-radius: 4px;
  background-color: #FF6E00;
  width: 100%;
  height: 3px;
  position: relative;
  top: 8px;
}

.single-post .type-post .related-post {
  padding: 12px;
}

.single-post .type-post .related-post a {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 24px;
}

.single-post .type-post .related-post img {
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
}

.single-post .type-post .related-post .title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 18px;
  margin-bottom: 8px;
  max-height: 36px;
  overflow: hidden;
}

.single-post .type-post .related-post .source-desc {
  font-weight: 500;
}

.single-post .type-post .related-post>a>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-post .type-post .see-more {
  margin-top: 14px;
  width: 100%;
  padding: 6px 16px;
  position: relative;
  border: 1.2px solid #FF6E00;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #FF6E00;
}

.single-post .type-post .see-more:after {
  content: '';
  background: url(../images/arrow-right-orange.svg);
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  background-size: 100% 100%;
}

.single-post .type-post .date {
  font-size: 10px;
  margin-top: 4px;
  color: #525252;
}

@media (max-width: 768px) {
  .single-post .type-post .main-content {
    display: block;
  }

  .single-post .type-post .post-content {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 24px;
  }

  .single-post .type-post .post-thumbnail img {
    height: unset;
    aspect-ratio: 16/9;
    border-radius: 8px;
  }

  .single-post .type-post .entry-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 12px;
  }

  .single-post .type-post .entry-content {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .single-post .type-post .post-sidebar {
    padding-left: 0;
    width: 107.53%;
    /* 100/93 */
    transform: translateX(-3.765%);
  }

  .single-post .type-post .related-posts-div,
  .single-post .type-post .latest-posts-div {
    border-radius: 0;
  }

  .single-post .type-post .latest-posts-div {
    margin-bottom: 0;
  }

  .single-post .type-post .post-sidebar h4 {
    font-size: 14px;
    line-height: 21px;
  }

  .single-post .type-post .post-sidebar h4:after {
    height: 2px;
  }

  .single-post .type-post .related-post a {
    grid-template-columns: 70px 1fr;
    column-gap: 12px;
  }

  .single-post .type-post .related-post .title {
    font-size: 12px;
    line-height: 18px;
  }
}