.blog-detail-page {
  padding-top: 92px;
}

@media (max-width: 768px) {
  .blog-detail-page {
    padding-top: 84px;
  }
}

/* BREADCRUMB SECTION */
/* ========================== */

.blog-detail-page .breadcrumb-section {
  background-color: var(--primary-cream);
}

.blog-detail-page .breadcrumb-section .container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  width: calc(100% - 1.5rem);
  flex-wrap: wrap;
}

.blog-detail-page .breadcrumb-section .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========================== */

/* POST CONTENT SECTION */
/* ========================== */

.blog-detail-page .title-wrapper {
  text-align: center;
  max-width: 740px;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.blog-detail-page .content {
  padding: 0 0.75rem;
}

.blog-detail-page .content img {
  width: 100%;
}

.blog-detail-page .ending-section {
  text-align: center;
  max-width: 740px;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.blog-detail-page .wp-caption {
  width: 100% !important;
}

.blog-detail-page strong {
  font-weight: 800;
}

/* ========================== */

/* NEWS SECTION */
/* ========================== */
.blog-detail-page .news-section {
  display: flex;
  margin: 8rem 0;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 0.75rem;
}

.blog-detail-page .news-section .list {
  display: flex;
  gap: 2rem;
}

.blog-detail-page .news-section .card {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3);
  background-color: var(--primary-cream);
}

.blog-detail-page .news-section .card.alt {
  background-color: var(--grey-white);
}

.blog-detail-page .news-section .thumbnail {
  width: 100%;
  aspect-ratio: 1.45;
  height: auto;
  object-fit: cover;
}

.blog-detail-page .news-section .info {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  padding: 1.5rem;
}

.blog-detail-page .news-section .text-paragraph {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-detail-page .news-section .text-title-2 {
  min-height: 4.125rem;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-detail-page .news-section a {
  margin-left: auto;
  width: fit-content;
  text-decoration: underline;
  margin-top: 0.5rem;
}

.blog-detail-page .see-more {
  margin-left: auto;
  display: block;
  margin-top: 2rem;
}

.blog-detail-page .knowledge-section {
  background-color: var(--primary-cream);
  padding: 4rem 0;
  margin: 8rem 0;
}

.blog-detail-page .knowledge-section .news-section {
  margin: 0;
}

@media (max-width: 992px) {
  .blog-detail-page .news-section .list {
    gap: 0.5rem;
  }
  
  .blog-detail-page .news-section .text-title-2 {
    min-height: 3.125rem;
  }
}

@media (max-width: 768px) {
  .blog-detail-page .news-section .list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
  }

  .blog-detail-page .news-section .card {
    width: calc(50% - 0.25rem);
  }

  .blog-detail-page .knowledge-section,
  .blog-detail-page .news-section {
    margin: 3rem 0;
  }

  .blog-detail-page .knowledge-section {
    padding: 2rem 0;
  }
}

@media (max-width: 572px) {
  .blog-detail-page .news-section .card {
    width: 100%;
    max-width: 400px;
  }
}

/* ============================================= */