/* Software Icons Styling */
.meta-item strong {
    display: block;
    margin-bottom: 8px;
}

.software-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.software-tool {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(232, 122, 93, 0.05);
    border: 1.5px solid rgba(232, 122, 93, 0.2);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #e87a5d;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: default;
}

.software-tool:hover {
    background: rgba(232, 122, 93, 0.1);
    border-color: rgba(232, 122, 93, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 122, 93, 0.15);
}

.software-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .software-tools {
        gap: 8px;
    }
    
    .software-tool {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .software-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .software-tool {
        padding: 6px 10px;
        font-size: 12px;
        gap: 6px;
    }
    
    .software-icon {
        width: 18px;
        height: 18px;
    }
}
