.author-section {
    overflow:hidden;
    background-color: #f8dde7;
    padding: 6rem 5rem 0;
}

.author-content {
    min-height: 48rem;

    display: grid;
    grid-template-columns: 1.5fr 0.8fr;


    align-items: center;
    justify-items: center;
}

.author-copy {
    max-width: 80rem;

}
.author-title {
    margin:
        0
        0
        3rem;

    color: #111;

    font-size: 4.6rem;

    line-height: 1;
}

.author-text {
    display: flex;

    flex-direction: column;

    gap: 2.5rem;
}


.author-text p {
    margin: 0;

    font-size: 2.4rem;
    line-height: 1.55;
}


.author-text em {
    font-weight: 600;
}

.author-quote,
.author-quote-attribution {
    padding: 0;
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
}
.author-quote {
    margin: 2.5rem 0 0;
    border: none;
}

.author-quote-attribution {
    margin: 0.4rem 0 0;
}


.author-image {
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.author-image img {
    -webkit-user-drag: none;
    user-select: none;

    width: 100%;
    max-width: 36rem;
    height: auto;
}




