/* Comic Main Page Styles */

/* Comic meta container */
.comic-meta {
  display: flex;
  gap: 24px;
  align-items: stretch;
  height: 347px;
  width: 100%;
  overflow: hidden;
}

/* Comic cover container */
.comic-cover {
  max-width: 246px;
  height: 100%;
}

.comic-cover img {
  width: 246px;
  height: 100%;
}

.comic-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Comic title */
.comic-info h1 {
  margin: 0;
  color: #fff;

  /* 24 */
  font-family: "PingFang SC";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
}

.comic-info p:first-of-type {
  color: var(---, rgba(255, 255, 255, 0.6));
  white-space: nowrap;
  max-width: 674px;
  text-overflow: ellipsis;
}

.comic-info div:first-of-type {
  color: var(---, rgba(255, 255, 255, 0.6));
}

.comic-info p {
  color: var(---, rgba(255, 255, 255, 0.6));
}

/* Tag styles */
.comic-info .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 4px;
  color: inherit;
  color: var(---, rgba(255, 255, 255, 0.6));
}

.comic-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}

.comic-id {
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comic-tags-container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.comic-tags-label {
  padding: 6px 0;
  flex-shrink: 0;
}

.comic-tags-container a {
  white-space: nowrap;
  flex-shrink: 0;
}
