        /* Цветовая палитра на основе #0097dc */
        :root {
            --primary-color: #0097dc;
            --primary-light: #00b4ff;
            --primary-dark: #007bb5;
            --secondary-color: #00dcb4;
            --accent-color: #dc0097;
            --gradient-primary: linear-gradient(135deg, #0097dc 0%, #00b4ff 100%);
            --gradient-secondary: linear-gradient(135deg, #00dcb4 0%, #00ffd5 100%);
            --gradient-accent: linear-gradient(135deg, #0097dc 0%, #00dcb4 50%, #00b4ff 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(0, 151, 220, 0.9) 0%, rgba(0, 180, 255, 0.85) 100%);
        }

        /* Hero секция для списка новостей */
        .blog-hero {
            position: relative;
            height: 10vh;
            min-height: 100px;
            overflow: hidden;
            background: var(--gradient-primary);
            margin-bottom: 60px;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 220, 180, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .blog-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 180, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .blog-hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            color: white;
        }

        .blog-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin: 0;
            line-height: 1.2;
        }

        .blog-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Breadcrumbs */
        /* .custom-breadcrumbs {
            margin-bottom: 20px;
        } */

        .custom-breadcrumbs a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .custom-breadcrumbs a:hover {
            color: white;
        }

        .custom-breadcrumbs span {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Карточки новостей */
        .news-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 151, 220, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            background: white;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 151, 220, 0.25);
        }

        .news-card-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-card-image img {
            transform: scale(1.08);
        }

        .news-card-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-primary);
            color: white;
            padding: 10px 15px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 151, 220, 0.4);
            z-index: 2;
        }

        .news-card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #333;
        }

        .news-card-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .news-card-title a:hover {
            color: var(--primary-color);
        }

        .news-card-lead {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .news-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .news-card-meta {
            display: flex;
            gap: 15px;
            font-size: 0.9rem;
            color: #999;
        }

        .news-card-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .news-card-meta-item i {
            color: var(--primary-color);
        }

        .btn-read-more {
            background: var(--gradient-primary);
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 151, 220, 0.3);
            background: var(--gradient-accent);
            color: white;
            background-size: 200% 200%;
            animation: gradient-shift 3s ease infinite;
        }

        /* Анимация градиента */
        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Пагинация */
        .custom-pagination {
            margin-top: 60px;
        }

        .custom-pagination .page-link {
            border-radius: 10px;
            margin: 0 5px;
            border: 2px solid #e0e0e0;
            color: #333;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .custom-pagination .page-link:hover {
            background: var(--gradient-primary);
            border-color: var(--primary-color);
            color: white;
        }

        .custom-pagination .page-item.active .page-link {
            background: var(--gradient-primary);
            border-color: var(--primary-color);
        }

        /* Hover эффекты с цветовыми акцентами */
        a:hover,
        .link-hover:hover {
            color: var(--primary-color);
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .blog-hero {
                height: 30vh;
                min-height: 250px;
            }

            .blog-hero h1 {
                font-size: 2rem;
            }

            .news-card-image {
                height: 200px;
            }

            .news-card-body {
                padding: 20px;
            }

            .news-card-title {
                font-size: 1.1rem;
            }

            .btn-read-more {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }

        /* Дополнительные декоративные элементы */
        .container.pb-5 {
            position: relative;
        }

        .container.pb-5::before {
            content: '';
            position: absolute;
            top: -50px;
            right: 10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 220, 180, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Дополнительные стили для плавности */
        .news-card-date {
            backdrop-filter: blur(10px);
        }

        /* Текстовые акценты */
        .text-primary,
        .text-color-primary {
            color: var(--primary-color) !important;
        }

        /* SVG иконки */
        .svg-fill-color-primary {
            fill: var(--primary-color) !important;
        }

        .svg-fill-color-primary:hover {
            fill: var(--secondary-color) !important;
        }