.realted-articles-section{
    background-color: var(--black-color);
    padding: 2em 0;
    padding-bottom: 1em;
}

.realted-articles-section h3{
    text-align: center;
    font-size: 3.5rem;
    color: var(--white-color);
}

.related-articles{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    grid-gap: 1em;
    justify-items: center;
}

.related-article{
    min-height: 700px;
    max-width: 500px;
}
.related-article img{
    height: 70%;
    object-fit: cover;
}

.related-article h5{
    font-size: 2rem;
    margin: 0;
    line-height: 104%;
    color: var(--white-color);
}

.related-article p{
    color: var(--white-color);
}

@media (max-width: 700px){
    .realted-articles-section h3{
        font-size: 2.5rem;
    }
    .related-article img{
        height: 70%;
    }
}