.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.category-post-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.category-post-item:hover {
    transform: translateY(-5px);
}

.category-post-item img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.category-post-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.category-post-item h3 a {
    text-decoration: none;
    color: #333;
}

.category-post-item h3 a:hover {
   color:#000;
}

.post-date {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.post-excerpt {
    font-size: 15px;
    margin-top: 10px;
}

/* 📱 Responsive Layout */
@media screen and (max-width: 1023px) {
    .category-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .category-posts-grid {
        grid-template-columns: 1fr;
    }
}
