/**
 * YCMC Licences — grille publique
 * Styles pour le shortcode [grille_licences]
 * (visible par tous, sortie du bundle drawer réservé aux éditeurs).
 */

.grille-licences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.licence-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #778db0;
    padding: 30px 20px;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s ease;
}

.licence-card:hover {
    background: #5a6878;
}

.licence-card svg {
    width: 90px;
    height: 90px;
    color: #fff;
    fill: #fff;
    margin-bottom: 15px;
}

.licence-card .titre {
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}
