.other-related-article {
    margin: 80px 0 160px;
}

.other-related-article__wrapper {
    padding-bottom: 160px;
}

.other-related-article__title {
    margin-bottom: 60px;
    text-align: center;
    color: var(--gold);
}

.other-related-article__post--thumbnail {
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
}

.other-related-article__post--thumbnail img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all ease 1500ms;
}

.other-related-article__post--thumbnail:hover img {
    transform: scale(1.5);
    transition: all linear 4000ms;
}

.other-related-article__post--date {
    margin-bottom: 6px;
}

.other-related-article__post--title {
    display: block;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 30px;
    color: var(--black);
    transition: all ease 400ms;
}

.other-related-article__post--title:hover {
    color: var(--gold);
}

@media (max-width: 991px) {
    .other-related-article {
        margin: 30px 0 80px;
    }

    .other-related-article__title {
        margin-bottom: 30px;
    }

    .other-related-article__post {
        margin-bottom: 40px;
    }

    .other-related-article__post:last-child {
        margin-bottom: 0;
    }

    .other-related-article__post--thumbnail {
        margin-bottom: 20px;
    }

    .other-related-article__post--thumbnail img {
        height: 180px;
    }

    .other-related-article__post--date {
        margin-bottom: 10px;
    }

    .other-related-article__post--title {
        font-size: 20px;
    }
}