.site-single {
  margin-top: 100px;
}

.time-modified {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  width: max-content;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--reverse-color);
}

/* post */

.site-main-single .post-title {
  line-height: 1.2;
  margin-bottom: 16px;
}

.post-content {
  font-size: 16px;
}

.post-content p,
.post-content span {
  margin-bottom: 16px;
  color: var(--dark-color);
  font-style: normal;
  line-height: 1.7;
  margin-top: 6px;
}

.post-content li {
  margin-bottom: 4px;
  color: var(--dark-color);
  font-style: normal;
  line-height: 1.8;
  margin-top: 8px;
}

.post-content a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #008ee9;
}

.post-content a:hover {
  color: var(--orange-color);
}

.post-content iframe,
.post-content figure {
  width: 100% !important;
}

.post-content figure {
  margin: 6px 0;
}

.post-content label {
  font-weight: 600;
}

.post-content figcaption {
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  color: #757575;
  font-style: italic;
}

.post-content ul,
.post-content ol {
  padding-left: 32px;
  line-height: 1.6;
  width: 100%;
  margin-bottom: 16px;
}

.post-content ul {
  list-style-type: disc;
}
.post-content ol {
  list-style-type: decimal;
}

.post-content img {
  display: flex;
  margin: auto !important;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.post-content table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  border: 1px solid #cbcbcb;
  margin-bottom: 16px;
  width: 100%;
}
.post-content table caption {
  color: #000;
  font: italic 85%/1 arial, sans-serif;
  padding: 1em 0;
  text-align: center;
}
.post-content table td,
.post-content table th {
  border-left: 1px solid #cbcbcb;
  border-width: 0 0 0 1px;
  font-size: inherit;
  margin: 0;
  overflow: visible;
  padding: 0.5em 1em;
}
.post-content table thead {
  background-color: #e0e0e0;
  color: #000;
  text-align: left;
  vertical-align: bottom;
}
.post-content table td {
  background-color: transparent;
}

.post-content table tr:nth-child(odd) td {
  background-color: #f2f2f2;
}

.post-content table tr:nth-child(even) td {
  background-color: #ffffff;
}

.post-content table th {
  background-color: #666666;
  color: #ffffff;
  font-weight: bold;
}

.post-content h2 {
  margin-bottom: 16px;
  margin-top: 30px;
}

.post-content h3 {
  margin-bottom: 12px;
  margin-top: 24px;
}

.post-content h4 {
  margin-bottom: 8px;
  margin-top: 18px;
}

.category-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}

.list-article-post {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 12px;
}

.post-article-link {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}
.box-post-article-thumbnail {
  width: 160px;
  max-width: 160px;
  min-width: 160px;
  height: 90px;
  max-height: 80px;
  min-height: 80px;
  border-radius: 3px;
  overflow: hidden;
}
.post-article-link:hover .post-article-thumbnail {
  transform: scale(1.05);
}
.post-article-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.post-article-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.post-article-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.02em;
  text-align: left;
}
.post-article-date {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--reverse-color);
}
.list-post-category {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.post-category {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--reverse-color);
}

.title-post-seem {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 12px;
}

.list-post-category {
  display: none;
}

blockquote {
  position: relative;
}
blockquote p {
  padding-left: 20px;
}
blockquote:before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--blue-color);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
blockquote:hover::before {
  background-color: var(--red-color);
}

.related-posts {
  margin-top: 32px;
}

.post-content-data {
  padding-bottom: 48px;
}
/*==================== RESPONSIVE ====================*/
@media screen and (min-width: 768px) {
  .header-post {
    align-items: center;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .post-content-data {
    width: 65%;
  }
  .full-post-content {
    flex-direction: row;
    gap: 24px;
  }
  .post-table-of-contents {
    width: 30%;
    position: sticky;
    top: 100px;
  }
  .list-post-category {
    display: block;
  }
  .box-post-article-thumbnail {
    width: 160px;
    max-width: 160px;
    min-width: 160px;
    height: 90px;
    max-height: 90px;
    min-height: 90px;
  }
  .post-article-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: left;
  }
  .post-article-date {
    color: var(--reverse-color);
    font-size: 15px;
  }
}
