
@media (max-width: 768px) {
  .book-library-title h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .book-library-title h2::after {
    width: 160px;
  }

  .book-library-comment p {
    font-size: 12px;
  }

  .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 3px;
  }

  .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    height: 100%;
    padding: 0;
    gap: 10px;
    background: none;
    box-shadow: none;
    border-radius: 0;
  }

  .card img {
    width: 90px;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border: none;
    display: block;
  }

  .card h3 {
    width: 120px;
    font-size: 12px;
    margin: 4px 0 0 0;
    text-align: cente;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card p {
    display: none;
  }
}

@media (max-width: 480px) {
  .card-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    justify-content: center;
  }

  .card {
    width: 100%;
    height: 100%;
    gap: 6px;
    align-items: center;
  }

  .card img {
    width: 70px;
    height: 100%;
  }

  .card h3 {
 display: none;
  }
}

