/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 09 2026 | 08:39:11 */
        body {
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Навигация по темам - новый раздел первый */
        .topics-navigation {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .topic-tag {
            background-color: var(--white);
            padding: 10px 15px;
            text-decoration: none;
            color: #000000;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .topic-tag.trust-tag {
            background-color: #ffc80a;
            color: #000000;
            font-weight: 500;
            order: -1; /* Ставим первым */
        }
        
        .topic-tag:hover {
            background-color: #f9593a;
            color: #ffffff;
        }