.new-book-section {
    width: 100%;
    background: #fdf1ef;

    padding: 20rem 5rem;

    display: flex;
    justify-content: center;
    align-items: center;
}
.new-book-layout {
    width: 100%;
    max-width: 130rem;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(45rem, 55rem)
        minmax(45rem, 60rem);

    justify-content: center;
    align-items: center;

    gap: 7rem;
}


.new-book-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-book-image img {
    -webkit-user-drag: none;
    user-select: none;
    display: block;
    width: 100%;
    max-width: 50rem;

    height: auto;

    object-fit: contain;
}


.new-book-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    max-width: 60rem;
}



/* TITLE */

.new-book-title {
    margin: 0;

    color: var(--main-color);

    font-size: 6.5rem;
    line-height: 1;

    font-weight: 600;
}


/* DESCRIPTION */

.new-book-description {
    width: 100%;
    max-width: 58rem;

    margin: 5rem 0 0;

    font-size: 2rem;
    line-height: 1.35;
}



.new-book-actions {
    display: flex;
    align-items: center;

    gap: 2.5rem;

    margin-top: 5rem;

    border-radius: 999px;
    width: 100%;
}

