main, main.wrapper {
    .site-block {
        .content {
            .sections-list {
                display: flex;
                flex-direction: column;
                gap: 10px;
                .section {
                    padding: 20px;
                    display: flex;
                    gap: 20px;
                    border-radius: 12px;
                    background: var(--bg-19);
                    &:hover {
                        background: var(--bg-20);
                    }
                    .img {
                        width: 320px;
                        min-width: 320px;
                        img {
                            width: 100%;
                            display: block;
                            border-radius: 8px;
                        }
                    }
                    .meta {
                        .top {
                            display: flex;
                            gap: 10px;
                            align-items: center;
                            margin-bottom: 16px;
                            .data {
                                display: flex;
                                gap: 10px;
                                align-items: center;
                                font-size: 12px;
                                font-weight: 500;
                                color: var(--text-10);
                                &::before {
                                    content: '';
                                    width: 8px;
                                    height: 8px;
                                    border-radius: 50%;
                                    background: var(--bg-21);
                                }
                            }
                        }
                        h2 {
                            margin-bottom: 10px;
                            a {
                                font-size: 24px;
                                font-weight: 700;
                                color: var(--text-5);
                            }
                        }
                        a {
                            font-size: 14px;
                            font-weight: 500;
                            color: var(--text-10);
                        }
                    }
                }
            }
            article {
                h1 {
                    font-size: 36px;
                    font-weight: 700;
                    color: var(--text-5);
                    margin-bottom: 24px;
                }
                h2 {
                    font-size: 24px;
                    font-weight: 700;
                    color: var(--text-12);
                    margin-bottom: 16px;
                }
                p {
                    margin-bottom: 16px;
                }
                a {
                    text-decoration: underline;
                }
                .top {
                    display: flex;
                    margin-bottom: 16px;
                    gap: 12px;
                    align-items: center;
                    span {
                        width: 4px;
                        height: 4px;
                        border-radius: 50%;
                        background: var(--bg-30);
                    }
                    .data {
                        font-size: 12px;
                        font-weight: 500;
                        color: var(--text-10);
                    }
                }
                .img {
                    margin-bottom: 24px;
                    img {
                        width: 100%;
                        border-radius: 8px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 768px) {
    main, main.wrapper {
        .site-block {
            .content {
                .sections-list {
                    .section {
                        flex-direction: column;
                        .img {
                            width: 100%;
                            min-width: 100%;
                        }
                    }
                }
                article {
                    h1 {
                        font-size: 28px;
                    }
                }
            }
        }
    }
}