/**
 * CSS Frontend pour le module Arpa3 Featured CMS
 */

.arpa3-featured-cms {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.arpa3-featured-cms .featured-cms-title {
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.arpa3-featured-cms .featured-cms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.arpa3-featured-cms .featured-cms-item {
    background: #f8f9fa;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.arpa3-featured-cms .featured-cms-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.arpa3-featured-cms .featured-cms-link {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: inherit;
}

.arpa3-featured-cms .featured-cms-item-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .arpa3-featured-cms .featured-cms-list {
        grid-template-columns: 1fr;
    }
    
    .arpa3-featured-cms {
        padding: 15px;
    }
    
    .arpa3-featured-cms .featured-cms-title {
        font-size: 16px;
    }
}