        .k19-reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 1024px) {
            .k19-reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 640px) {
            .k19-reviews-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        .k19-review-card {
            /* background: #f5f3f8; 
            border-radius: 12px;
            padding: 30px;
            */
            position: relative;
            /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
            height: fit-content;
        }
        
        /* .k19-review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        } */
        
        .k19-review-card-inner {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 30px 30px 0 30px;
            background-color: var(--color-bg-gray);
        }
        .k19-review-card-inner .k19-review-more{
            padding-bottom: 30px;
        }

        .k19-review-card-inner {

        }
        .k19-review-dots {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .k19-review-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #2c4a7c;
        }
        
        .k19-review-text {
            flex: 1;
            font-size: 15px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 20px;
            min-height: 120px;
        }
        
        .k19-review-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            color: var(--color-accent);
            /* color: #2c4a7c;
            font-weight: 600;
            font-size: 13px; */
            text-decoration: none;
            padding: 8px 0;
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .k19-review-more:hover {
            color: #1a365d;
        }
        
        .k19-review-more svg {
            transition: transform 0.3s ease;
        }
        
        .k19-review-more:hover svg {
            transform: translateX(5px);
        }
        
        .k19-review-footer {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto;
            padding-top: 30px;
            background-attachment: scroll;
            background-clip: border-box;
            background-color: rgb(255, 255, 255);
            background-image: url(https://karpovka19.ru/local/templates/main_tpl/img/svg/review_corner.svg);
            background-origin: padding-box;
            background-position-x: 70px;
            background-position-y: 0px;
            background-repeat: no-repeat;
            background-size: auto 26px;
            /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
        }
        
        .k19-review-avatar {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
        }
        
        .k19-avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .k19-avatar-placeholder {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .k19-review-meta {
            flex: 1;
        }
        
        .k19-review-author-name {
            font-weight: 700;
            font-size: 16px;
            color: #1a1a1a;
            margin-bottom: 4px;
        }
        
        .k19-review-subtopic {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }
        
        .k19-reviews-pagination {
            margin: 40px 0;
        }
        
        .k19-reviews-pagination ul {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        
        .k19-reviews-pagination li {
            margin: 0;
        }
        
        .k19-reviews-pagination .page-numbers {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 12px;
            border-radius: 8px;
            background: #f5f3f8;
            color: #2c4a7c;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .k19-reviews-pagination .page-numbers:hover {
            background: #2c4a7c;
            color: white;
        }
        
        .k19-reviews-pagination .page-numbers.current {
            background: #2c4a7c;
            color: white;
        }
        
        .k19-reviews-pagination .page-numbers.prev,
        .k19-reviews-pagination .page-numbers.next {
            background: transparent;
            border: 2px solid #2c4a7c;
        }
        
        .k19-reviews-pagination .page-numbers.prev:hover,
        .k19-reviews-pagination .page-numbers.next:hover {
            background: #2c4a7c;
            color: white;
        }
        
        .k19-reviews-pagination .dots {
            color: #999;
            padding: 0 8px;
        }
        
        .k19-no-reviews {
            text-align: center;
            padding: 60px 20px;
            background: #f5f3f8;
            border-radius: 12px;
            color: #666;
            font-size: 18px;
        }