/* === Manga Single Page Styles === */

/* Main article container */
article {
  padding: 20px 0;
}

/* Thumbnail */
.post-thumbnail {
  margin: 30px 0;
  text-align: center;
}

.post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: inline-block;
}

/* Info badges */
.manga-info-badges {
  margin: 20px 0;
  text-align: center;
}

.manga-info-badges .label {
  margin-right: 10px;
}

.badge-series, .badge-oneshot, .badge-status {
  color: #fff;
}

/* post heading  */

.manga-heading h1 {
  text-align: center;
}

/* Post body */
.post-body {
  margin: 30px 0;
  color: #aaa;
  line-height: 1.8;
}

.post-body h2,
.post-body h3,
.post-body h4 {
  color: var(--light-gold);
  margin-top: 60px;
  margin-bottom: 10px;
  font-weight: 300;
}

.post-body p {
  margin: 10px 0;
}

.post-body ul,
.post-body ol {
  margin: 10px 0 15px 20px;
}

.post-body li {
  margin: 5px 0;
}

.post-body a {
  color: var(--light-gold);
  text-decoration: none;
}

.post-body a:hover {
  color: #fff;
}

.post-body blockquote {
  border-left: 5px solid var(--light-gold);
  padding-left: 15px;
  margin: 15px 0;
  color: #999;
  font-style: italic;
}

/* Tag section */
.tag-section {
  margin: 30px 0;
  padding: 20px;
  background-color: #2a2a2a;
  border-radius: 4px;
}

.tag-section h4 {
  color: var(--light-gold);
  margin-top: 0;
  font-weight: 300;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  padding: 5px 10px;
  background-color: #1a1a1a;
  border: 1px solid var(--light-gold);
  border-radius: 4px;
  color: var(--light-gold);
  font-size: 14px;
  transition: all 0.3s ease;
}


/* Shop section */
.shop-section {
  margin: 30px 0;
  padding: 20px;
  background-color: #2a2a2a;
  border-radius: 4px;
}

.shop-section h4 {
  color: var(--light-gold);
  margin-top: 0;
  font-weight: 300;
}

.shop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-links a {
  padding: 10px 15px;
  background-color: #d4b159;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.shop-links a:hover {
  background-color: var(--light-gold);
  color: #1a1a1a;
}

/* Horizontal rule */
hr {
  border: none;
  height: 1px;
  background-color: #333;
  margin: 30px 0;
}

/* Pagination */
.pager {
  margin-top: 30px;
  text-align: center;
}

.pager ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.pager li {
  display: inline-block;
}

.pager-link {
  color: var(--light-gold);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid var(--light-gold);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.pager-link:hover {
  background-color: var(--light-gold);
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .post-body {
    font-size: 0.95em;
  }

  .shop-links {
    flex-direction: column;
  }

  .shop-links a {
    width: 100%;
    text-align: center;
  }

  .tag-list {
    justify-content: flex-start;
  }

  .pager ul {
    flex-direction: column;
    gap: 10px;
  }

  .pager-link {
    width: 100%;
    text-align: center;
  }
}
