.kws-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kws-blog-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kws-blog-item:hover {
    transform: translateY(-4px);
}

.kws-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.kws-content {
    padding: 16px;
}

.kws-content h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.kws-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.kws-readmore {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
}

.kws-pagination {
    margin-top: 40px;
    text-align: center;
}

.kws-pagination a,
.kws-pagination span {
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    text-decoration: none;
    border-radius: 4px;
}

.kws-pagination .current {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Tablet */
@media (max-width: 991px) {
    .kws-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .kws-blog-grid {
        grid-template-columns: 1fr;
    }

    .kws-thumb img {
        height: 180px;
    }
}
