.cptl-list-wrapper,
.blog-single,
.anisong-container {
  background-color: #fff;
  padding: 20px;
}

.cptl-list-title {
  border-left: 8px solid #1976d2;
  padding-left: 10px;
  margin: 15px 0 50px;
  font-weight: 600;
  font-size: 22px;
}

.cptl-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.cptl-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.cptl-thumb-link {
  display: block;
  width: 100px;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 6px;
}

.cptl-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.cptl-item:hover .cptl-thumb {
  transform: scale(1.05);
}

.cptl-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 5px 0 0;
}

.cptl-title {
  color: #121212;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cptl-meta {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: auto;
  line-height: normal;
}

.bookmark-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  cursor: pointer;
  color: #121212;
  user-select: none;
}

.bookmark-toggle svg {
  width: 15px;
  height: 15px;
}

.cptl-date {
  font-size: 11px;
  color: #555;
}

.cptl-new-label,
.pg-song-new {
  background-color: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
}

@media screen and (max-width: 992px) {
  .cptl-list-title {
    font-size: 18px;
    margin: 20px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .cptl-list-wrapper,
  .blog-single,
  .anisong-container {
    padding: 10px 10px 20px;
  }

  .cptl-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cptl-item {
    padding-bottom: 10px;
  }

  .cptl-thumb-link {
    width: 80px;
  }

  .cptl-info {
    margin: 2px 5px 2px 0;
  }
}