.hero-image {
    width: 40%;
}
.hero-image img {
    border-radius: 30px;
    width: 100%;
}
.book-texts {
    width: 60%;
    padding: 0 3rem;
}
.book-title {
    color: #10162F;
    font-size: 2.75rem;
    font-weight: 700;
}
.book-description {
    margin-top: 2rem;
    margin-bottom: 3rem;
    max-height: 30rem;
    overflow-y: scroll;
    padding: 1.5rem 1.5rem;
    box-shadow: inset 8px 8px 15px -16px rgba(0, 0, 0, 0.4);
}
.book-description p {
    color: rgb(38 46 78);
    font-size: 18px;
    line-height: 1.5;
}
.book-description p:not(:last-child) {
    margin-bottom: 1rem;
}
.book-author {
    flex: 2;
}
.author lord-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.author-name {
    font-size: 17px;
    font-weight: 700;
}
.author-social {
    margin-top: 1rem;
}
.author-social > li:not(:last-child) {
    margin-right: 10px;
}
.author-social li a {
    border: 2px solid #10162F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: var(--third);
    padding: 6px 14px;
    letter-spacing: normal;
    text-transform: none;
    transition: all .4s ease-in-out, outline-offset 1ms linear, outline 1ms linear;
}
.author-social li a:hover {
    background-color: #34394c;
    border-color: rgba(0, 0, 0, 0);
}
.author-social li a:hover svg * {
    fill: #fff;
}
.author-social li a svg {
    width: 25px;
    height: 25px;
}
.author-social li a svg * {
    fill: #10162F;
}
.book-store {
    flex: 2;
}
.book-store lord-icon {
    width: 50px;
    height: 50px;
    margin-right: 8px;
}
.book-store span {
    font-weight: 700;
}
.publisher {
    font-size: 16px;
    color: #2b07bb;
    margin-top: 10px;
}
.book-gallery-image {
    transition: opacity 200ms ease-out, transform 400ms ease-out;
}
.book-gallery-image:hover {
    opacity: 0.9;
    transform: scale(0.9);
}
.animated-shape-1 lord-icon {
    width: 80px;
    height: 80px;
}
.books__gallery{
    margin-top: 4rem;
}
.related-books {
    margin-top: 6rem;
}
.related-books-title {
    font-size: 2.5rem;
    font-weight: 700;
}
.related-pagination {
    padding-bottom: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e1d9d9;
}
.post-data {
    padding: 25px 16px 25px;
    border: 1px solid var(--primary);
}
.post-data h3 {
    color: rgb(16, 22, 47);
    font-size: 21px;
    font-weight: 700;
}
.post-data h3 + p {
    color: var(--secondary);
    font-size: 16px;
    border-top: 1px solid #ede5e5;
    padding-top: 10px;
    margin-top: 12px;
}
@media screen and (max-width: 768px) {
    .hero-image {
        width: 100%;
        margin-bottom: 3rem;
    }
    .book-texts {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .book-title {
        font-size: 2rem;
    }
}
@media screen and (max-width: 480px) {
    .book-description {
        max-height: initial;
        overflow-y: initial;
        box-shadow: none;
        padding: 0;
    }
    .book-description p {
        font-size: 17px;
        line-height: 1.6;
    }
    .book-author {
        flex: 100% 0 0;
        margin-bottom: 2rem;
    }
}