.fleet-lirbrary {
    margin-top: 5rem;
}
.fleet-node:not(:last-child) {
    margin-bottom: 2rem;
}
.fleet-row .image {
    position: relative;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}
.fleet-row .content {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--main-dark);
    color: var(--cream);
    padding: 3rem 2rem;
}
.fleet-row .content .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}
.fleet-row .content .description {
    font-size: 18px;
    line-height: 1.5;
}
@media screen and ( max-width: 820px ){
    .fleet-row .image {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
    .fleet-row .content {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}
@media screen and ( max-width: 480px ){
    .fleet-row .content .title {
        font-size: 24px;
    }
    .fleet-row .content .description {
        font-size: 16px;
        line-height: 1.6;
    }
}