.news-related-random {
    margin-top: 100px;
}

.news-related-random__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
}

.news-related-random__list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.news-related-random__list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.news-related-random__list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

.news-related-random__list .news-item .news-item__image img {
    aspect-ratio: 440/440;
}

.news-related-random .news-related-random__title {
    text-align: center;
    margin-bottom: 50px;
}

.news-related-random .news-item .news-item__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.news-related-random .news-item .news-item__meta .news-item__date {
    padding: 3px 10px;
    background: #F5F5F5;
    display: inline-block;
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
}

.news-related-random .news-item .news-item__meta .news-item__category {
    font-size: 16px;
    line-height: 23px;
    font-weight: 700;
    text-transform: capitalize;
}

.news-related-random .news-item .news-item__image {
    margin-bottom: 30px;
}

.news-related-random .news-item .news-item__excerpt {
    line-height: 23px;
    font-weight: 400;
}

.news-related-random .news-related-random__container {
    padding: 0;
}

@media only screen and (max-width: 991px) {
    .news-related-random {
        margin-top: 60px;
    }

    .news-related-random__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767.98px) {
    .news-related-random__list .news-item .news-item__image img {
        aspect-ratio: 330 / 330;
    }
}

@media only screen and (max-width: 570.98px) {
    .news-related-random__list {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 48px;
    }
}