.post-detail-section .header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.post-detail-section .header .badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.post-detail-section .header .badge-row .badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 7.5px 15px;
  border: 1px solid rgba(var(--bs-secondary-rgb), 0.28);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
}
.post-detail-section .header .badge-row .badge.badge-theme {
  color: var(--bs-secondary);
}
.post-detail-section .header .badge-row .badge.badge-theme:hover {
  background: rgba(var(--bs-secondary-rgb), 0.1);
}
.post-detail-section .header .post-title {
  font-size: 30px;
  margin: 0;
}
.post-detail-section .header .post-detail-quote {
  font-size: 18px;
  margin: 0;
}
.post-detail-section .header .meta-item-wrapper {
  display: flex;
  gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.post-detail-section .header .meta-item-wrapper .meta-item {
  display: flex;
  gap: 7.5px;
  align-items: center;
}
.post-detail-section .header .meta-item-wrapper .meta-item svg {
  stroke: var(--bs-secondary);
  height: 18px;
}
.post-detail-section .header .meta-item-wrapper .meta-item .text {
  font-size: 14px;
}
.post-detail-section .post-image {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--bs-gray-200);
}
.post-detail-section .post-image .img-caption {
  padding: 7.5px 15px;
  background: var(--bs-gray-50);
  font-size: 12px;
  color: var(--bs-gray-600);
  text-align: center;
}
.post-detail-section .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: start;
  align-items: center;
}
.post-detail-section .tags-wrapper .tags-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid var(--bs-gray-200);
  color: var(--bs-dark);
  padding: 5px 12px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.16s;
  background: transparent;
}
.post-detail-section .tags-wrapper .tags-item:hover {
  border-color: var(--bs-gray-200);
  background: var(--bs-gray-100);
}
.post-detail-section .category-link {
  text-decoration: underline;
}
.post-detail-section .author-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}
.post-detail-section .author-wrapper img {
  height: 25px;
  width: 25px;
  min-width: 25px;
  border-radius: 50%;
  object-fit: cover;
}
.post-detail-section #toc {
  border-radius: 10px;
  padding: 10px;
  background: rgba(var(--bs-secondary-rgb), 0.025);
  border: 1px solid rgba(var(--bs-secondary-rgb), 0.1);
}
.post-detail-section #toc ul {
  margin: 0;
}
.post-detail-section #toc a {
  color: var(--bs-secondary-dark);
}
