/* ==========================
   Single Post
========================== */

.single-post-wrapper {
  padding: 50px 0;
}

.single-post {
  max-width: 900px;
  margin: 0 auto;
}

.post-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #777;
  font-size: 14px;
  margin-bottom: 30px;
}

/* ==========================
   Nội dung bài viết
========================== */

.post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin: 30px 0 15px;
  line-height: 1.4;
}

.post-content ul,
.post-content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}

.post-content li {
  margin-bottom: 10px;
}

/* ==========================
   Ảnh Responsive
========================== */

.post-content img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 25px auto;
  border-radius: 8px;
}

/* Figure và Caption của WordPress */

.post-content figure {
  max-width: 100%;
  margin: 25px auto;
}

.post-content figure img {
  width: 100%;
  height: auto;
}

.post-content figcaption,
.post-content .wp-caption-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* ==========================
   Video & Iframe Responsive
========================== */

.post-content iframe,
.post-content video {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
  margin: 25px 0;
}

/* ==========================
   Table Responsive
========================== */

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  overflow-x: auto;
  display: block;
}

.post-content th,
.post-content td {
  border: 1px solid #ddd;
  padding: 12px;
}

.post-content th {
  background: #f5f5f5;
}

/* ==========================
   Code Block
========================== */

.post-content pre {
  overflow-x: auto;
  padding: 15px;
  background: #222;
  color: #fff;
  border-radius: 8px;
}

.post-content code {
  font-family: Consolas, monospace;
}

/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {

  .single-post-wrapper {
    padding: 30px 0;
  }

  .post-title {
    font-size: 28px;
  }

  .post-meta {
    gap: 10px;
    font-size: 13px;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content img,
  .post-content iframe,
  .post-content video {
    width: 100%;
    height: auto;
  }
}