@charset "utf-8";

.title {
  height: 310px;
  background-image: url(../images-202508a/books/books-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}

.book-list {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 240px);
  column-gap: 95px;
  row-gap: 70px;
  justify-content: center;;
}

.book-list dl {
  margin-top: 20px;
}

.book-list dt {
  font-weight: bold;
}

.book-list dd {
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.book-list .description {
  font-size: 12px;
  line-height: 20px;
  margin-top: 10px;
}

.book-list li {
  position: relative;
}

.footer {
  margin-top: 100px;
}

@media (max-width: 900px) {
  .book-list {
    margin-top: 45px;
    row-gap: 40px;
  }
}