.formularis-category-posts {
    background: #f9f9f9;
    border-radius: 5px;
}

.formularis-category-posts h3 {
    font-size: 24px;
    color: #222;
}

.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-post img {
    transition: opacity 0.3s ease;
}

.category-post img:hover {
    opacity: 0.8;
}

.category-post h4 a:hover {
    color: #0073aa;
}

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