/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1776473929
Updated: 2026-04-18 02:58:49

*/

.arte-subcat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    padding: 32px 0;
    width: 100%;
}

.arte-subcat-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.arte-subcat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.arte-subcat-img {
    width: 100%;
    padding-top: 65%;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.arte-subcat-info {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arte-subcat-nombre {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.arte-subcat-count {
    font-size: 12px;
    color: #888;
}

.arte-subcat-badge {
    font-size: 12px;
    color: #c0392b;
    font-weight: 500;
}

@media (max-width: 768px) {
    .arte-subcat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}