/* Comic Right List - 与 homeSectionType3 样式完全一致 */

.comic-right-list {
  width: 100%;
  margin-top: 12px;
}

.comic-right-list .section-type-3__item{
  max-width: 241px;
}


.comic-right-list .type3-tags{
  margin: 4px 0;
}

.comic-right-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.comic-right-list__title {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
}

.comic-right-list__tag {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  padding: 2px 5px;
  gap: 10px;
  border-radius: 4px 4px 0 9px;
  background: linear-gradient(180deg, #FFE8A0 0%, #E37101 100%);
  font-family: "PingFang SC";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: #7E3F00;
  z-index: 2;
}

/* 使用 homeSection.css 中的 section-type-3 样式 */
.comic-right-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 覆盖默认的网格布局，改为垂直列表 */
.comic-right-list .section-type-3 {
  display: block !important;
  grid-template-columns: none !important;
  gap: 12px !important;
  padding: 0 !important;
}

/* 确保每个项目使用正确的样式 */
.comic-right-list .section-type-3__item {
  margin-bottom: 12px;
}

/* 824px及以下宽度：3列网格布局 */
@media screen and (max-width: 824px) {
  .comic-right-list .section-type-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px 4 !important;
    padding: 0 !important;
    justify-items: center;
  }
  .type3-cover{
    aspect-ratio: 0.78 !important;
  }
  .comic-right-list .section-type-3__item {
    margin-bottom: 0;
    width: 100%;
    max-width: none;
  }
}