.novel-item {
  width: 100%;
  max-width: 720px;
  height: 300px;
  margin: 1rem auto;
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.novel-item:hover {
  transform: scale(1.01);
}

.novel-cover {
  flex: 0 0 33.33%;
  height: 100%;
  overflow: hidden;
}

.novel-cover img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.novel-content {
  flex: 0 0 66.66%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.novel-more a {
  text-decoration: none;
}

.novel-more a:hover {
  text-decoration: underline;
}

.novel-content h2 {
  margin: 0rem;
  font-size: 1.5rem;
}

.novel-cp-tag {
  font-size: 1.15rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0rem;
  padding-left: 0.5rem;
}

.novel-short-description {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 0rem;
  padding-left: 0.5rem;
}

.novel-special-tags {
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
  margin-bottom: 0rem;
  padding-left: 0.5rem;
}

.novel-illustrator {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0rem;
  padding-left: 0.5rem;
}

.novel-more {
  align-self: flex-end;
  margin-top: auto;
  font-size: 1rem;
  text-align: right;
  padding-right: 2.5rem;
}

/* 手機版 RWD */
@media screen and (max-width: 767px) {
  .novel-item {
    flex-direction: column;
    height: auto;
  }

  .novel-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .novel-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .novel-content {
    flex: 1;
    padding: 0.75rem 1rem;
  }
  
  .novel-more {
    margin-top: 1rem;
  }
}