.blog-page {
    main {
        padding: 60px 0 70px;
    }
    
    .blog-hero__title {
        color: var(--color-black);
        font-size: var(--text-h2);
        font-weight: 700;
        line-height: normal;
        margin-bottom: 20px;
        text-align: center;

        @media only screen and (max-width: 575px) {
            text-align: left;
        }
    }

    .blog-list__grid {
        position: relative;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;

        @media only screen and (max-width: 991px) {
            grid-template-columns: repeat(3, 1fr);
        }

        @media only screen and (max-width: 767px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media only screen and (max-width: 575px) {
            grid-template-columns: 1fr;
        }
    }
}