.ak-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.ak-library-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid #ded8ca;
  border-radius: 0.5rem;
  background: #fff;
}

.ak-library-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.ak-library-card h3 {
  margin: 1rem 0 0.5rem;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.ak-library-card h3 a {
  color: inherit;
  text-decoration: none;
}

.ak-library-price {
  margin: auto 0 1rem;
  color: #5d1028;
  font-weight: 700;
}

.ak-editorial-status,
.ak-library-coming {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #f3efe6;
  color: #5d1028;
  font-weight: 700;
}

@media (max-width: 560px) {
  .ak-library-grid {
    grid-template-columns: 1fr;
  }
}
