/* ----------------------------------------------------------------------------
   10. ESP32 TAG - 5 fichiers
   Fichier cible: 05-pages/blog/tags.css
   ---------------------------------------------------------------------------- */

.esp32,
.arduino,
.electrical {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0.25rem;
    transition: transform 0.2s ease;
}

.esp32 {
    background: #e74c3c;
    color: white;
}

.arduino {
    background: #00979d;
    color: white;
}

.electrical {
    background: #f39c12;
    color: white;
}

.esp32:hover,
.arduino:hover,
.electrical:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

