        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Верхние карусели */
        .top-blocks {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        .top-block {
            flex: 1;
            height: 300px;
            background-size: cover;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }
        .top-block-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px;
            color: white;
        }
        .top-block-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        /* Нижние блоки */
        .main-content {
            display: grid;
            grid-template-columns: 70% 30%;
            gap: 20px;
        }
        .articles {
            display: grid;
            gap: 20px;
        }
        .article {
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        .article-imgs {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        .article-img {
            flex: 1;
            height: 120px;
            background-size: cover;
            border-radius: 4px;
        }
        .article-meta {
            color: #666;
            margin-top: 5px;
        }

        /* Сidebar */
        .sidebar {
            border-left: 1px solid #eee;
            padding-left: 20px;
        }
        .ad-block {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }
        .ad-title {
            font-weight: bold;
            margin-bottom: 10px;
        }
        .comments {
            margin-top: 30px;
        }
        .comment {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .comment-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }