.banner-title {
  margin: 3rem 0;
  text-align: center;
  font-family: 'Caraque';
  color: #2c2c2c;
}

/* Overwrite content-width for booklist */
.content-width {
  width: 90%;
}

.book-info {
  display: flex;
  gap: 60px;
  margin: auto;
  width: 90%;
}

.book-info img {
  width: 100%;
}

.book-text-div {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* width: calc(70% - 60px); */
  flex: 1;
}

.stars {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;

  .empty-star {
    stroke: #ffcb31;
    stroke-width: 2px;
    path {
      fill: transparent;
    }
  }
}

.stars-mobile {
  margin: 1rem 0;
}

.book-picture {
  width: 30%;
  picture img{
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
  }
}

.book-author, .book-paragraph, .book-heading {
  color: #2c2c2c;
  line-height: calc(20px * 1.5);
}
.book-author {
  font-size: 24px;
  font-family: Segoe UI;
}

.book-paragraph {
  font-size: 20px;
  font-family: Segoe UI;
}

.book-heading {
  align-items: baseline;
  display: flex;
  
  font-size: 28px;
  font-weight: bold;
  font-family: Segoe UI;
  
  justify-content: space-between;
}

.book-buttons {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.book-buttons button {
  background: #63ccf5 0% 0% no-repeat padding-box;
  border-radius: 26px;
  border: none;
  box-shadow: 0px 3px 6px #00000029;
  color: white;
  cursor: pointer;
  font: normal normal bold 22px/33px Segoe UI;
  padding: 10px 30px 10px 30px;
}

.book-specs {
  align-items: center;
  border: 3px dashed #ee579d;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  margin-top: 20px;
  padding: 10px;
}

.spec-sections {
  display: flex;
}

.spec-section {
  display: flex;
  flex-direction: column;
  padding: 5px 20px 20px 20px;
}
.spec-heading {
  color: var(--accent-text-color);
  font-weight: bold ;
  font-family: Segoe UI;
  font-size: 20px;

  margin-bottom: 0.5rem;
}

.spec-spec {
  font-family: Segoe UI;
  font-size: 20px;
}

.spec-right-border {
  border-right: 1px dashed #ee579d;
}

.spec-image {
  height: 70px;
  padding-left: 20px;
  padding-right: 10px;
  width: 70px;
}

.spec-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.divider {
  display: flex;
  justify-content: center;
  margin: 88px auto;
  width: 100%;
}

.social-footer {
  margin: 80px auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;

  color: #ee579d;
  font-size: 28px;
  font-family: 'Segoe UI';

  p {
    margin: 0;
  }

  a {
    display: grid;
    place-items: center;
  }
}

.social-footer .social-links {
  display: flex;
  gap: 1rem;

  svg {
    cursor: pointer;
    aspect-ratio: 1/1;
    width: 40px;
  }
}

.similar-title {
  font-family: Segoe UI;
  font-weight: bold;
  font-size: 30px;
  
  color: #63ccf5;
  text-align: center;
}