 .news-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .news-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.1);
        }
        
        .news-body {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-date {
            color: #0d6478;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .news-date i {
            margin-right: 5px;
        }
        
        .news-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .news-excerpt {
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }
        
        .news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #e9ecef;
        }
        
        .news-author {
            display: flex;
            align-items: center;
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .news-author i {
            margin-right: 5px;
        }
        
        .btn-read-more {
            background: linear-gradient(135deg, #0a4d5c 0%, #0d6478 100%);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 100, 120, 0.3);
            color: white;
        }
        
        /* Пагинация */
        .pagination {
            margin-top: 50px;
        }
        
        .pagination .page-link {
            color: #0d6478;
            border: 1px solid #dee2e6;
            padding: 10px 18px;
            margin: 0 5px;
            border-radius: 8px;
        }
        
        .pagination .page-link:hover {
            background-color: #0d6478;
            color: white;
            border-color: #0d6478;
        }
        
        .pagination .page-item.active .page-link {
            background-color: #0d6478;
            border-color: #0d6478;
        }
        
        .no-news {
            text-align: center;
            padding: 80px 20px;
        }
        
        .no-news i {
            font-size: 5rem;
            color: #dee2e6;
            margin-bottom: 20px;
        }
        
        .no-news h3 {
            color: #6c757d;
            margin-bottom: 10px;
        }