.news-cat-title {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #333;
    border-left: 5px solid #007bff;
    padding-left: 10px;
}

.news-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-card-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.news-card-excerpt {
    font-size: 16px;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    background: #0056b3;
}

.news-cat-title {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 5px;
    color: #fff;
    padding: 12px 20px;
    background: linear-gradient(90deg,#007bff,#00c6ff);
    border-radius: 8px;
}

.news-cat-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

