.card {
    display: flex;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 12px;
    color: var(--d-color2);
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #333333;
  }

  .cover {
    height: 150px;
    /*min-width: 104px;
    max-width: 104px;
    background-color: #2d2dbf;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    aspect-ratio: 2 / 3;*/
  }
  .cover img {
    border-radius: 8px;
  }

  .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0; /* ✨ Prevents overflow */
  }

  .title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .title a {
    text-decoration: none;
    color: var(--d-color2);
  }
  .meta {
    font-size: 12px;
    color: var(--d-color3);
    margin-bottom: 8px;
  }

  .genre-tag {
    display: inline-block;
    background-color: var(--l-color3);
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 11px;
    margin-right: 6px;
    margin-bottom: 6px;
  }

  .card .chapter {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    gap: 8px;
  }

  .card .chapter a {
    color: var(--link);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
  }

  .chapter-time {
    color: var(--d-color3);
    flex-shrink: 0;
    font-size: 11px;
  }

  @media (max-width: 575px) {
        .chapter-releases {
            height: 60px;
        }
        .chapter-releases > div:nth-child(1) {
            margin-bottom: 10px;
        }
  }