/* Tuiles d'équipement de la fiche d'un deck. Les trois familles d'images
   partagent une taille de présentation, indépendamment de leur taille source. */
.decks-native-modal .decks-native-modal-monsters {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.decks-native-modal .decks-native-modal-monster { min-width: 0; }

.decks-native-modal .decks-native-equipment {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.decks-native-modal .decks-native-gear-button {
    position: relative;
    display: inline-grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    padding: 2px;
    overflow: hidden;
    border-radius: 7px;
}

.decks-native-modal .decks-native-gear-button img {
    display: block;
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
}

.decks-native-modal .decks-native-gear-button b {
    position: absolute;
    right: 2px;
    bottom: 1px;
    min-width: 14px;
    padding: 0 2px;
    border-radius: 5px;
    background: rgba(7, 2, 18, .82);
    color: #fff;
    font-size: 10px;
    line-height: 14px;
}
