h2 .sub-title {
    font-size: large;
    margin-top: 8px;
}


.book-component {
    border-bottom: 1px solid rgba(182, 81, 143, 0.3);
    padding: 0 0 16px 0;
    display: grid;
    grid-template-columns: 210px auto;
    gap: 32px;
}

.book-component div:first-child {
    align-content: center;
}

.book-component:not(:last-child) {
    margin-bottom: 32px;
}

section {
    max-width: 900px;
}

section:last-child {
    margin-bottom: 32px;
}

.brief {
    font-family: bitter-light, bitter, serif;
    font-size: x-large;
    display: grid;
    grid-template-rows: auto auto;
}

.brief p {
    text-align: left;
}

.brief p:first-child {
    margin-top: 0;
}

.brief div:last-child {
    align-content: end;
    padding-bottom: 4px;
    justify-self: left;
}

img.book {
    height: 240px;
}

h3 {
    margin-top: 0;
    padding-top: 0;
    color: rgba(182, 81, 143, 1);
    font-weight: bold;
}

@media screen and (max-width: 426px) {
    .grid {
        display: block;
    }

    .brief div:last-child {
        justify-self: center;
    }

    h3 {
        margin-top: 8px;
    }
}