/**
 * components/collections-gallery.css
 * Styles pour la section CMS "collections_gallery".
 * Utilise les tokens définis dans tokens.css.
 */

/* Conteneur de page */
.cms-section.collections-gallery {
    min-height: 100vh;
    background: transparent;
}

/* Carte collection */
.collection-card-grid {
    background: var(--color-surface, rgba(20, 20, 30, 0.8));
    border: 1px solid var(--color-border, rgba(0, 207, 255, 0.35));
    border-radius: var(--radius-md, 8px);
    transition: all var(--transition-normal, 0.3s ease);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card-grid:hover {
    box-shadow: var(--shadow-glow, 0 0 20px rgba(0, 207, 255, 0.4));
    transform: translateY(-5px);
    border-color: var(--color-border-hover, rgba(0, 229, 255, 0.7));
}

.collection-card-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Corps de la carte */
.collection-card-grid-body {
    padding: var(--space-lg, 24px);
}

.collection-card-grid-title {
    font-size: var(--font-size-lg, 1.2rem);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(118, 161, 218, 0.3);
    margin-bottom: var(--space-sm, 8px);
}

.collection-card-grid-desc {
    font-size: var(--font-size-sm, 0.85rem);
    color: var(--color-text-muted, #a0aec0);
    margin: 0;
}

/* Pas de résultat */
.no-collections-msg {
    color: var(--color-text-muted, #a0aec0);
    font-size: var(--font-size-base, 0.95rem);
    text-align: center;
    padding: var(--space-xl, 40px) 0;
}
