section.blog {
    margin-top: 100px;
    margin-bottom: 100px;

    .blog__wrap {
        display: flex;
        column-gap: 40px;
    }

    .blog__sidebar {
        width: 260px;
        flex-shrink: 0;
    }

    .blog__result {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        row-gap: 60px;
    }

    .blog__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 24px;
        margin-bottom: 50px;
    }

    .blog__title {
        color: var(--Base-Dark, #171717);
        font-size: 40px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: 0.8px;
    }

    .blog__info {
        display: flex;
        column-gap: 30px;
    }

    .blog__count {
        color: var(--Gray-6, #9a9aa2);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 0.16px;
        align-self: flex-end;
        margin-bottom: 6px;
    }

    .blog__control {
        display: flex;
        align-items: center;
    }

    .blog__sort {
        margin-left: auto;

        .custom-select__wrapper {
            border: none;

            .custom-select__active {
                min-height: auto;
                padding: 0px;
            }
        }
    }

    .blog__views {
        margin-left: 32px;
        display: flex;
        align-items: center;

        .blog__view {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            fill: var(--Gray-6, #9a9aa2);

            &:not(:last-child) {
                position: relative;
                margin-right: 12px;
                padding-right: 12px;
            }

            &:not(:last-child):after {
                content: "";
                position: absolute;
                right: 0;
                height: 100%;
                width: 1px;
                background-color: var(--Gray-2, #f2f2f2);
            }

            &.active {
                fill: var(--Gray-8---Main, #383838);
                pointer-events: none;
            }
        }
    }

    .blog__items {
        display: flex;
        flex-wrap: wrap;
        column-gap: 24px;
        row-gap: 32px;

        article {
            flex: 1 0 calc(25% - 24px);
            max-width: 302px;

            .article-card__image {
                height: 170px;
                border-radius: 10px;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .article-card__content {
                margin-top: 16px;

                .article-card__title {
                    color: var(--Base-Dark, #171717);
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 140%;
                    letter-spacing: 0.16px;
                }
            }
        }
    }

    .blog__footer {
        margin-top: auto;
        align-self: center;
    }
}