/* MSP Core — Boîte à outils des actions de santé ([boite_outils_projet]) */
.bop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
            margin: 30px 0;
        }
        .bop-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #fff;
            
            padding: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.09);
            text-decoration: none !important;
            color: inherit !important;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }
        .bop-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .bop-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .bop-card-icon svg {
            width: 24px;
            height: 24px;
        }
        .bop-card-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }
        .bop-card-title {
            font-weight: 600;
            font-size: 14px;
            color: #1a1a1a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .bop-card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .bop-badge {
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }
        .bop-size {
            font-size: 12px;
            color: #999;
        }
        .bop-card-dl {
            flex-shrink: 0;
            color: #999;
            transition: color 0.2s ease;
        }
        .bop-card:hover .bop-card-dl {
            color: #009289;
        }
        @media (max-width: 600px) {
            .bop-grid {
                grid-template-columns: 1fr;
            }
        }
