.blog-post .container {
    max-width: 855px;
}

.blog-post__category {
    display: none;
    font-family: 'Poppins', 'sans-serif';
    font-weight: 700;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 1px;
    color: #E40000;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
    .blog-post__category {
        display: inline-block;
    }
}

.blog-post__title {
    width: 100%;
    margin: 12px 0;
    font-family: 'Gilroy-Heavy', 'sans-serif';
    font-weight: 400;
    font-size: 26px;
    line-height: 1.1;
    color: #0E0101;
}

.blog-post__author {
    gap: 6px;
    padding-right: 4px;
}

.blog-post__author,
.blog-post__information {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
}

.blog-post__information {
    margin-bottom: 22px;
}

.blog-post__author,
.blog-post__date {
    font-family: 'Poppins', 'sans-serif';
    font-weight: 500;
    font-size: 12px;
    line-height: 1.7;
    color: #696969;
}

.blog-post__socials-share {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 40px;
}

.blog-post__socials-title {
    font-family: 'Poppins', 'sans-serif';
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #0E0101;
}

.blog-post__socials {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1;

}

.blog-post__socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.blog-post__image {
    margin-bottom: 40px;
}

.blog-post__content p {
    font-family: 'Poppins', 'sans-serif';
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #0E0101;
    margin-bottom: 40px;
}

.blog-post__content img {
    width: 100%;
    margin-bottom: 40px;
}

.blog-post__socials-share.desktop {
    display: none;
}

@media only screen and (min-width: 992px) {

    .blog-post__socials-share.desktop {
        display: flex;
    }

    .blog-post__socials-share.mobile {
        display: none;
    }

}

.blog-post__tags-holder,
.blog-post__tags {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.blog-post__tags-title {
    font-family: 'Poppins', 'sans-serif';
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #0E0101;
    padding: 4px 0;
}

.blog-post__tag {
    background: #F6F6F6;
    padding: 4px 12px;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #696969;
    border-radius: 2px;
}

.related-posts {
    margin-top: 80px;
    padding: 16px;
}

.related-posts__title {
    border-bottom: 2px solid #DB0B18;
    margin-bottom: 32px;
}

.related-posts__title h2 {
    font-family: 'Gilroy-Heavy', 'sans-serif';
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    color: #0E0101;
    margin-bottom: 12px;
}

.related-post {
    margin-bottom: 20px;
}

.related-post__image {
    margin-bottom: 12px;
}

.related-post__image img {
    width: 100%;
}

.related-post__title {
    margin-bottom: 12px;
}

.related-post__title a {
    font-family: 'Poppins', 'sans-serif';
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #0E0101;
}

.related-post__author,
.related-post__meta {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.related-post__author,
.related-post__date {
    font-family: 'Poppins', 'sans-serif';
    font-weight: 500;
    font-size: 12px;
    line-height: 1.55;
    color: #696969;
}

@media only screen and (min-width: 992px) {
    .blog-post__title {
        font-size: 40px;
    }

    .blog-post__tags-holder {
        margin-bottom: 40px;
    }

    .related-posts {
        padding: 0 24px;
        max-width: 1392px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-posts__title {
        grid-column: 1 / span 2;
    }
}

@media only screen and (min-width: 1024px) {

    .related-posts {
        grid-template-columns: repeat(4, 1fr);
        margin-top: 80px;
    }

    .related-posts__title {
        grid-column: 1 / span 4;
    }
}