/* Related articles below a blog post. */
.list-more-read {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: auto;
    max-width: 894px;
}

.list-more-read > .col-md-12 {
    float: none;
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 20px !important;
}

.list-more-read .item-more {
    position: relative;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    grid-template-rows: minmax(144px, auto);
    column-gap: 32px;
    align-items: start;
    height: auto;
    min-height: 144px;
}

.list-more-read .item-more > img {
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    height: 144px;
    min-height: 144px;
    max-height: 144px;
    margin: 0;
    object-fit: cover;
}

.list-more-read .item-more > .color-link {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin: 16px 0;
    color: #5bb9f0;
    font-family: Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    word-break: break-word;
}

.list-more-read .item-more > .item-more-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.list-more-read .item-more > .color-link a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 575px) {
    .list-more-read .item-more {
        column-gap: 16px;
    }

    .list-more-read .item-more > .color-link {
        margin-top: 0;
        font-size: 18px;
        line-height: 24px;
    }
}
