/* books-section */
.books-section {
  width: 90%;
  margin: 0 auto;
  padding: 60px 0;
  .section-tab {
    background-color: #6f4f1e59;
    border-radius: 4px;
    padding: 15px 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    .tab-item {
      color: #6f4f1e;
      font-size: 20px;
      padding: 10px;
      background-color: #fff;
      border-radius: 4px;
      width: 40%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .active {
      background-color: #6f4f1e;
      color: #fff;
    }
  }
}

/* pagination */
.page-pagination {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 30px;

  .page-item {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafade;
    border: 1px solid #000b771a;
    font-family: inter-400;
  }

  .active {
    background-color: #6f4f1e;
    color: #fff;
  }
}

/* audio-book-card */
.audio-book-card {
  .image-box {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;

      h5 {
        color: #fff;
        font-size: 36px;
        text-align: center;
        font-family: merri-700;
      }
    }

    .audio-button {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(255, 255, 255, 0.8);
      padding: 6px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      z-index: 5;

      img {
        width: 20px;
        height: 20px;
      }

      &:hover {
        background: rgba(255, 255, 255, 1);
      }
    }
  }
}

  .audio-book-content {
    background-color: #fcf5e7;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    .section-name {
      font-family: merri-900;
      font-size: 14px;
      color: #000000a3;
      letter-spacing: 0.1%;
    }
    .title {
      font-size: 20px;
      font-family: merri-700;
      color: #212121;
      line-height: 35px;
      letter-spacing: 0.1%;
    }
    .details {
      display: flex;
      align-items: center;
      justify-content: space-between;
      .author {
        color: #000000a3;
        font-size: 12px;
        line-height: 24px;
      }
      .icon-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        .icon-item {
          font-family: merri-700;
          font-size: 14px;
          color: #6f4f1e;
          display: flex;
          align-items: center;
          gap: 5px;
        }
      }
    }
    .description {
      color: #000000a3;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0.1%;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
       overflow: hidden;
    }
    .listen-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
      .listen-item {
        display: flex;
        gap: 10px;
        align-items: center;

        .content {
          display: flex;
          flex-direction: column;
          /* gap: 5px; */
          span {
            font-size: 14px;
            color: #6f4f1e;
          }
          h5 {
            font-size: 20px;
            font-family: merri-900;
            letter-spacing: 0.1%;
            color: #212121;
          }
        }
      }
    }
    .line {
      background-color: #000000;
      width: 37px;
      height: 2px;
      border-radius: 2px;
    }
    .more-section {
      color: #212121;
      line-height: 24px;
      letter-spacing: 0.1%;
    }
  }
}

@media only screen and (max-width: 767px) {
  .books-section {
    padding: 40px 0;
    .section-tab {
      padding: 10px 15px;
      gap: 10px;
      .tab-item {
        font-size: 16px;
        padding: 10px;
        border-radius: 4px;
        width: 50%;
      }
    }
  }
  /* audio-book-card */
  .audio-book-card {
    .image-box {
      height: 150px;
      .overlay {
        h5 {
          font-size: 20px;
        }
      }
    }
    .audio-book-content {
      padding: 10px;
      gap: 7px;
      .section-name {
        font-size: 10px;
      }
      .title {
        font-size: 15px;
        line-height: 25px;
      }
      .author {
        font-size: 10px;
      }
      .details {
        .icon-box {
          width: 100%;
          .icon-item {
            font-size: 12px;
            gap: 4px;
            img {
              width: 16px;
            }
          }
        }
      }
      .listen-container {
        gap: 10px;
        .listen-item {
          gap: 5px;
          img {
            width: 36px;
          }
          .content {
            span {
              font-size: 10px;
            }
            h5 {
              font-size: 13px;
            }
          }
        }
      }
      .more-section {
        font-size: 14px;
      }
    }
  }
}

/* @media only screen and (max-width: 991px) {
} */
