.related-links {
    display: flex;
    align-items: flex-start;
    border-top: 1px solid #57c2b6;
    border-bottom: 1px solid #57c2b6;
    padding: 0.5rem;
    width: 100%;
    margin: 0 0 0.5rem 0;
}

.related-links>div {
    flex: 1;
    margin-left: 1rem;
}

.related-links h2 {
    font-weight: 800;
    font-size: medium;
    margin: 0 0 0.5rem 0;
}

.related-links a {
    color: #57c2b6;
    text-decoration: none;
    font-weight: 500;
    font-size: large;
}

.related-links a:hover {
    color: #332f30;
}

.related-links a img {
    width: 150px;
}

@media only screen and (max-width: 480px) {
    .related-links h2 {
        font-size: small;
    }

    .related-links a {
        font-size: medium;
    }

    .related-links a img {
        width: 75px;
    }
}